None
**Instruments Affected**: NIRCam
This is the validation notebook that displays the regression tests for the NIRCam instrument in the JWST calibration pipeline. This notebook runs and displays the regression tests that are performed as a part of the normal software continuous integration process. For more information on the pipeline visit the links below.
Pipeline description: https://jwst-pipeline.readthedocs.io/en/latest/index.html
Pipeline code: https://github.com/spacetelescope/jwst
JWST regression tests are located in the regtest folder of the pipeline within the GitHub repository.
These are terms or acronymns used in this notebook that may not be known a general audience.
JWST: James Webb Space Telescope
NIRCam: Near-Infrared Camera
Regression testing is a software testing method which checks if the pipeline step produces the expected outcome by comparing an input file with a truth file. Truth files for testing are stored in Artifactory.
Data used for regression tests is stored in Artifactory, and consists of a mix of simulated and ground testing data for the different instruments and modes.
import tempfile
import os
import pytest
import jwst
from IPython.display import IFrame
from IPython.core.display import HTML
Here we define any convenience functions to help with running the unit tests.
print("Testing JWST Pipeline {}".format(jwst.__version__))
jwst_dir = os.path.dirname(jwst.__file__)
regtest = os.path.join(jwst_dir, 'regtest')
associations = os.path.join(jwst_dir, 'associations')
datamodels = os.path.join(jwst_dir, 'datamodels')
stpipe = os.path.join(jwst_dir, 'stpipe')
with tempfile.TemporaryDirectory() as tmpdir:
outdir = os.path.join(tmpdir, 'regtest_report.html')
!pytest --bigdata {regtest} -k 'test_nircam' -v --ignore={associations} --ignore={datamodels} --ignore={stpipe} --html={outdir} --self-contained-html
with open(os.path.join(tmpdir, "regtest_report.html")) as report_file:
html_report = "".join(report_file.readlines())
Testing JWST Pipeline 1.1.0 ============================= test session starts ============================== platform linux -- Python 3.8.10, pytest-6.2.4, py-1.10.0, pluggy-0.13.1 -- /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/bin/python cachedir: .pytest_cache metadata: {'Python': '3.8.10', 'Platform': 'Linux-3.10.0-1160.25.1.el7.x86_64-x86_64-with-glibc2.10', 'Packages': {'pytest': '6.2.4', 'py': '1.10.0', 'pluggy': '0.13.1'}, 'Plugins': {'asdf': '2.8.0', 'metadata': '1.11.0', 'html': '3.1.1', 'forked': '1.3.0', 'xdist': '2.2.1', 'ci-watson': '0.5'}, 'BUILD_NUMBER': '82', 'BUILD_ID': '82', 'BUILD_URL': 'https://plwishmaster.stsci.edu:8081/job/Notebooks/job/jwst_validation_notebooks_spacetelescope/82/', 'NODE_NAME': 'jwcalibdev.stsci.edu', 'JOB_NAME': 'Notebooks/jwst_validation_notebooks_spacetelescope', 'BUILD_TAG': 'jenkins-Notebooks-jwst_validation_notebooks_spacetelescope-82', 'EXECUTOR_NUMBER': '17', 'JENKINS_URL': 'https://plwishmaster.stsci.edu:8081/', 'WORKSPACE': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope', 'GIT_COMMIT': '000767fad942df44f8dafd578d86ffc4f8d0a6b5', 'GIT_URL': 'https://github.com/spacetelescope/jwst_validation_notebooks', 'GIT_BRANCH': 'origin/master'} rootdir: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope plugins: asdf-2.8.0, metadata-1.11.0, html-3.1.1, forked-1.3.0, xdist-2.2.1, ci-watson-0.5 collected 453 items / 404 deselected / 49 selected ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] FAILED [ 2%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfsub] FAILED [ 4%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-crfints] FAILED [ 6%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfalign] FAILED [ 8%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfsub] FAILED [ 10%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-crfints] FAILED [ 12%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00003-crfints] FAILED [ 14%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00004-crfints] FAILED [ 16%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00005-crfints] FAILED [ 18%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[psfstack] FAILED [ 20%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[i2d] FAILED [ 22%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] PASSED [ 24%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[saturation] PASSED [ 26%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[superbias] PASSED [ 28%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[refpix] PASSED [ 30%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[linearity] PASSED [ 32%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[trapsfilled] PASSED [ 34%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dark_current] PASSED [ 36%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[jump] FAILED [ 38%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[rate] FAILED [ 40%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[flat_field] FAILED [ 42%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[cal] FAILED [ 44%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[i2d] FAILED [ 46%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage2_wcs PASSED [ 48%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d FAILED [ 51%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_catalog FAILED [ 53%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_segmap FAILED [ 55%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile ERROR [ 57%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target FAILED [ 59%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] FAILED [ 61%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] ERROR [ 61%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[no_mt_table] FAILED [ 63%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[no_mt_table] ERROR [ 63%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] FAILED [ 65%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] ERROR [ 65%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] ERROR [ 67%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[extract_2d] ERROR [ 69%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[flat_field] ERROR [ 71%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[o012_crfints] ERROR [ 73%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[srctype] ERROR [ 75%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[x1dints] ERROR [ 77%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_x1dints ERROR [ 79%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_whtlt ERROR [ 81%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_setpointing FAILED [ 83%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_setpointing ERROR [ 83%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] ERROR [ 85%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[o006_crfints] ERROR [ 87%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimage_stage3_phot ERROR [ 89%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_setpointing FAILED [ 91%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] FAILED [ 93%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal2] FAILED [ 95%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb1] FAILED [ 97%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb2] FAILED [100%] ==================================== ERRORS ==================================== ___________________ ERROR at setup of test_image3_closedfile ___________________ rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0') @pytest.fixture() def run_image3_closedfile(rtdata, jail): """Run calwebb_image3 on NIRCam imaging with data that had a closed file issue.""" rtdata.get_asn("nircam/image/fail_short_image3_asn.json") collect_pipeline_cfgs("config") args = ["config/calwebb_image3.cfg", rtdata.input] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:84: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_image3.py:97: in process result = self.resample(input_models) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:451: in run self.save_model(result, idx=idx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:919: in save_model output_path = model.save( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff62752cfd0> args = ({'data': array([[ 0. , 0. , 0. , ..., 0. , 0. , 0. ], [... ..., [0, 0, 2, ..., 0, 0, 0], [0, 0, 0, ..., 0, 0, 0], [0, 0, 0, ..., 0, 0, 0]], dtype=int32)},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...('name', 'DEC_REF'), ('datatype', 'float64')]), OrderedDict([('name', 'ROLL_REF'), ('datatype', 'float64')])])]))]))])} error = <ValidationError: "0 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationError ---------------------------- Captured stdout setup ----------------------------- ---------------------------------------------------------------------- ERROR RUNNING STEP 'Image3Pipeline': 0 is not of type 'string' Failed validating 'type' in schema['pro perties']['meta']['properties']['dither']['properties']['dither_po ints']: OrderedDict([('title', 'Total number of points in primary dither pattern'), ('type', 'string'), ('fits_keyword', 'NDITHPTS')]) On instance['meta']['dither']['dither_points']: 0 ---------------------------------------------------------------------- ---------------------------- Captured stderr setup ----------------------------- 2021-06-04 04:46:12,872 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf 2021-06-04 04:46:12,886 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-06-04 04:46:13,206 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-06-04 04:46:13,287 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-06-04 04:46:13,288 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-06-04 04:46:13,289 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-06-04 04:46:13,290 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-06-04 04:46:13,291 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-06-04 04:46:13,292 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:46:13,293 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-06-04 04:46:13,293 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:46:13,293 - stpipe - INFO - OS: Linux 2021-06-04 04:46:13,432 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). 2021-06-04 04:46:13,437 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-06-04 04:46:13,528 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-06-04 04:46:13,533 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-06-04 04:46:13,534 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-06-04 04:46:13,535 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:46:13,536 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-06-04 04:46:13,814 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-06-04 04:46:13,815 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-06-04 04:46:13,833 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,833 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:46:13.833554 2021-06-04 04:46:13,833 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,833 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-06-04 04:46:13,833 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-06-04 04:46:13,833 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - WARNING - * Group ID=1: Unable to compute sky value 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - WARNING - Unable to compute "global" sky value 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: None [not converted] 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:46:13.835593 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002039 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,837 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-06-04 04:46:13,942 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-06-04 04:46:13,943 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:46:13,957 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-06-04 04:46:14,064 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 2021-06-04 04:46:14,796 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-06-04 04:46:15,020 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-06-04 04:46:15,088 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:46:13.833554 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:46:13.833554 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:396 * Group ID=1: Unable to compute sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:396 * Group ID=1: Unable to compute sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:361 Unable to compute "global" sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:361 Unable to compute "global" sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:46:13.835593 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:46:13.835593 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002039 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002039 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:68 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:406 Model size 998.6K available system memory 119.0G DEBUG stpipe.Image3Pipeline.resample:util.py:406 Model size 998.6K available system memory 119.0G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 _ ERROR at call of test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] _ input_file = 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update > model.write(rtdata.input) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:46: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:1063: in write self.save(path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff6290871c0> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...t', '>f8'), ('mt_z_jwst', '>f8'), ('mt_jwst_distance', '>f8'), ('mt_sun_distance', '>f8'), ('phase_angle', '>f8')]))},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...64'}, {'name': 'int_mid_BJD_TDB', 'datatype': 'float64'}, {'name': 'int_end_BJD_TDB', 'datatype': 'float64'}])]))]))])} error = <ValidationError: "4 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 4 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 4 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range]>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/posixpath.py:152: TypeError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-06-04 04:47:58,327 - stpipe - INFO - Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:set_telescope_pointing.py:237 Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 INFO stpipe:set_telescope_pointing.py:237 Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 ______ ERROR at call of test_nircam_image_moving_target_kwds[no_mt_table] ______ input_file = 'jw00634_nrcblong_no_mtt_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update > model.write(rtdata.input) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:46: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:1063: in write self.save(path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff629096130> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...41 38.878964850', 'v2_ref': -89.596514, 'v3_ref': -491.474153, 'v3yangle': 0.00805772, 'vparity': -1, 'wcsaxes': 2}}},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...64'}, {'name': 'int_mid_BJD_TDB', 'datatype': 'float64'}, {'name': 'int_end_BJD_TDB', 'datatype': 'float64'}])]))]))])} error = <ValidationError: "4 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 4 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 4 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_image_moving_target_kwds[no_mt_table]>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/posixpath.py:152: TypeError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-06-04 04:47:59,255 - stpipe - INFO - Moving target position table not found in the file ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:set_telescope_pointing.py:241 Moving target position table not found in the file INFO stpipe:set_telescope_pointing.py:241 Moving target position table not found in the file _____ ERROR at call of test_nircam_image_moving_target_kwds[with_mt_table] _____ input_file = 'jw00634_nrcblong_mttest_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update > model.write(rtdata.input) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:46: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:1063: in write self.save(path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff627879d00> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...t', '>f8'), ('mt_z_jwst', '>f8'), ('mt_jwst_distance', '>f8'), ('mt_sun_distance', '>f8'), ('phase_angle', '>f8')]))},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...64'}, {'name': 'int_mid_BJD_TDB', 'datatype': 'float64'}, {'name': 'int_end_BJD_TDB', 'datatype': 'float64'}])]))]))])} error = <ValidationError: "4 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 4 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 4 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_image_moving_target_kwds[with_mt_table]>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/posixpath.py:152: TypeError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-06-04 04:48:00,890 - stpipe - INFO - Moving target RA and Dec updated. ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:set_telescope_pointing.py:244 Moving target RA and Dec updated. INFO stpipe:set_telescope_pointing.py:244 Moving target RA and Dec updated. ____________ ERROR at setup of test_nircam_tsgrism_stage2[calints] _____________ jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError ---------------------------- Captured stdout setup ----------------------------- ---------------------------------------------------------------------- ERROR RUNNING STEP 'Spec2Pipeline': Traceback (most recent call last): File "/data1/jenkins/workspac e/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/en vs/jwst_validation_notebooks/lib/python3.8/site- packages/jwst/pipeline/calwebb_spec2.py", line 112, in process result = self.process_exposure_product( File "/data1/jenkins/wor kspace/Notebooks/jwst_validation_notebooks_spacetelescope/minicond a3/envs/jwst_validation_notebooks/lib/python3.8/site- packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product calibrated = self._process_grism(calibrated) File "/data1/jenkins/workspace/N otebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/ jwst_validation_notebooks/lib/python3.8/site- packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism calibrated = self.flat_field(data) File "/dat a1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetele scope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site -packages/stpipe/step.py", line 451, in run self.save_model(result, idx=idx) File "/data1/jenkins/workspace/ Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs /jwst_validation_notebooks/lib/python3.8/site- packages/stpipe/step.py", line 919, in save_model output_path = model.save( File "/data1/jenkins/workspace/Notebooks/jwst_vali dation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_no tebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save self.to_fits(output_path, *args, **kwargs) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks _spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/pyth on3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: File "/data1/jenkins/workspace/Notebooks/jw st_validation_notebooks_spacetelescope/miniconda3/envs/jwst_valida tion_notebooks/lib/python3.8/site- packages/stdatamodels/fits_support.py", line 395, in to_fits _save_from_schema(hdulist, tree, schema) File "/data1/jenkins/wo rkspace/Notebooks/jwst_validation_notebooks_spacetelescope/minicon da3/envs/jwst_validation_notebooks/lib/python3.8/site- packages/stdatamodels/fits_support.py", line 352, in _save_from_schema validator.validate(tree, _schema=schema) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks _spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/pyth on3.8/site-packages/jsonschema/validators.py", line 353, in validate raise error jsonschema.exceptions.ValidationError: 0 is not of type 'string' Failed validating 'type' in schema['prope rties']['meta']['properties']['dither']['properties']['dither_poin ts']: OrderedDict([('title', 'Total number of points in primary dither pattern'), ('type', 'string'), ('fits_keyword', 'NDITHPTS')]) On instance['meta']['dither']['dither_points']: 0 ---------------------------------------------------------------------- ---------------------------- Captured stderr setup ----------------------------- 2021-06-04 04:48:01,696 - stpipe - INFO - PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-spec2pipeline_0001.asdf 2021-06-04 04:48:01,745 - stpipe.Spec2Pipeline - INFO - Spec2Pipeline instance created. 2021-06-04 04:48:01,746 - stpipe.Spec2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:48:01,747 - stpipe.Spec2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:48:01,748 - stpipe.Spec2Pipeline.imprint_subtract - INFO - ImprintStep instance created. 2021-06-04 04:48:01,748 - stpipe.Spec2Pipeline.msa_flagging - INFO - MSAFlagOpenStep instance created. 2021-06-04 04:48:01,749 - stpipe.Spec2Pipeline.extract_2d - INFO - Extract2dStep instance created. 2021-06-04 04:48:01,753 - stpipe.Spec2Pipeline.master_background - INFO - MasterBackgroundNrsSlitsStep instance created. 2021-06-04 04:48:01,754 - stpipe.Spec2Pipeline.master_background.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:48:01,754 - stpipe.Spec2Pipeline.master_background.pathloss - INFO - PathLossStep instance created. 2021-06-04 04:48:01,755 - stpipe.Spec2Pipeline.master_background.barshadow - INFO - BarShadowStep instance created. 2021-06-04 04:48:01,756 - stpipe.Spec2Pipeline.master_background.photom - INFO - PhotomStep instance created. 2021-06-04 04:48:01,756 - stpipe.Spec2Pipeline.wavecorr - INFO - WavecorrStep instance created. 2021-06-04 04:48:01,757 - stpipe.Spec2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:48:01,758 - stpipe.Spec2Pipeline.srctype - INFO - SourceTypeStep instance created. 2021-06-04 04:48:01,759 - stpipe.Spec2Pipeline.straylight - INFO - StraylightStep instance created. 2021-06-04 04:48:01,759 - stpipe.Spec2Pipeline.fringe - INFO - FringeStep instance created. 2021-06-04 04:48:01,760 - stpipe.Spec2Pipeline.pathloss - INFO - PathLossStep instance created. 2021-06-04 04:48:01,761 - stpipe.Spec2Pipeline.barshadow - INFO - BarShadowStep instance created. 2021-06-04 04:48:01,761 - stpipe.Spec2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:48:01,762 - stpipe.Spec2Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2021-06-04 04:48:01,763 - stpipe.Spec2Pipeline.cube_build - INFO - CubeBuildStep instance created. 2021-06-04 04:48:01,764 - stpipe.Spec2Pipeline.extract_1d - INFO - Extract1dStep instance created. 2021-06-04 04:48:01,764 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:48:01,765 - stpipe - INFO - OS: Linux 2021-06-04 04:48:01,947 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits',). 2021-06-04 04:48:01,959 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_bsub': False, 'fail_on_exception': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'emsm', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'xdebug': None, 'ydebug': None, 'zdebug': None, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}}} 2021-06-04 04:48:02,012 - stpipe.Spec2Pipeline - INFO - Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavecorr', 'wavelengthrange'] 2021-06-04 04:48:02,026 - stpipe.Spec2Pipeline - INFO - Prefetch for APCORR reference file is 'N/A'. 2021-06-04 04:48:02,026 - stpipe.Spec2Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2021-06-04 04:48:02,026 - stpipe.Spec2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:48:02,026 - stpipe.Spec2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:48:02,027 - stpipe.Spec2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:48:02,027 - stpipe.Spec2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:48:02,027 - stpipe.Spec2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-06-04 04:48:02,029 - stpipe.Spec2Pipeline - INFO - Override for EXTRACT1D reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json'. 2021-06-04 04:48:02,029 - stpipe.Spec2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:48:02,029 - stpipe.Spec2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-06-04 04:48:02,030 - stpipe.Spec2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits'. 2021-06-04 04:48:02,031 - stpipe.Spec2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:48:02,031 - stpipe.Spec2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for FRINGE reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits'. 2021-06-04 04:48:02,033 - stpipe.Spec2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:48:02,033 - stpipe.Spec2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:48:02,033 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf'. 2021-06-04 04:48:02,035 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVECORR reference file is 'N/A'. 2021-06-04 04:48:02,035 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf'. 2021-06-04 04:48:02,037 - stpipe.Spec2Pipeline - INFO - Starting calwebb_spec2 ... 2021-06-04 04:48:02,038 - stpipe.Spec2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong 2021-06-04 04:48:02,038 - stpipe.Spec2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits ... 2021-06-04 04:48:02,274 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-06-04 04:48:02,275 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:48:02,628 - stpipe.Spec2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:48:02,633 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:48:02,813 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). 2021-06-04 04:48:02,813 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None} 2021-06-04 04:48:02,814 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step skipped. 2021-06-04 04:48:02,814 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract done 2021-06-04 04:48:02,978 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). 2021-06-04 04:48:02,979 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-06-04 04:48:02,979 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step skipped. 2021-06-04 04:48:02,980 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract done 2021-06-04 04:48:03,138 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-06-04 04:48:03,138 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-06-04 04:48:03,139 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step skipped. 2021-06-04 04:48:03,139 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging done 2021-06-04 04:48:03,300 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-06-04 04:48:03,300 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:48:05,098 - stpipe.Spec2Pipeline.flat_field - INFO - Extracting matching subarray from flat Traceback (most recent call last): File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process result = self.process_exposure_product( File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product calibrated = self._process_grism(calibrated) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism calibrated = self.flat_field(data) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run self.save_model(result, idx=idx) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model output_path = model.save( File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save self.to_fits(output_path, *args, **kwargs) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits _save_from_schema(hdulist, tree, schema) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema validator.validate(tree, _schema=schema) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate raise error jsonschema.exceptions.ValidationError: 0 is not of type 'string' Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: OrderedDict([('title', 'Total number of points in primary dither pattern'), ('type', 'string'), ('fits_keyword', 'NDITHPTS')]) On instance['meta']['dither']['dither_points']: 0 ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-MASTERBACKGROUNDNRSSLITSSTEP parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-MASTERBACKGROUNDNRSSLITSSTEP parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-MASTERBACKGROUNDNRSSLITSSTEP reference files found. DEBUG stpipe:pipeline.py:182 No PARS-MASTERBACKGROUNDNRSSLITSSTEP reference files found. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-SPEC2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-SPEC2PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-spec2pipeline_0001.asdf INFO stpipe:pipeline.py:179 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-spec2pipeline_0001.asdf INFO stpipe.Spec2Pipeline:step.py:321 Spec2Pipeline instance created. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Spec2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:321 ImprintStep instance created. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:321 MSAFlagOpenStep instance created. INFO stpipe.Spec2Pipeline.extract_2d:step.py:321 Extract2dStep instance created. INFO stpipe.Spec2Pipeline.master_background:step.py:321 MasterBackgroundNrsSlitsStep instance created. INFO stpipe.Spec2Pipeline.master_background.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.master_background.pathloss:step.py:321 PathLossStep instance created. INFO stpipe.Spec2Pipeline.master_background.barshadow:step.py:321 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.master_background.photom:step.py:321 PhotomStep instance created. INFO stpipe.Spec2Pipeline.wavecorr:step.py:321 WavecorrStep instance created. INFO stpipe.Spec2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.srctype:step.py:321 SourceTypeStep instance created. INFO stpipe.Spec2Pipeline.straylight:step.py:321 StraylightStep instance created. INFO stpipe.Spec2Pipeline.fringe:step.py:321 FringeStep instance created. INFO stpipe.Spec2Pipeline.pathloss:step.py:321 PathLossStep instance created. INFO stpipe.Spec2Pipeline.barshadow:step.py:321 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Spec2Pipeline.resample_spec:step.py:321 ResampleSpecStep instance created. INFO stpipe.Spec2Pipeline.cube_build:step.py:321 CubeBuildStep instance created. INFO stpipe.Spec2Pipeline.extract_1d:step.py:321 Extract1dStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Spec2Pipeline:step.py:367 Step Spec2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits',). INFO stpipe.Spec2Pipeline:step.py:371 Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_bsub': False, 'fail_on_exception': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'emsm', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'xdebug': None, 'ydebug': None, 'zdebug': None, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}}} DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Spec2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Spec2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavecorr', 'wavelengthrange'] INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for APCORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Override for EXTRACT1D reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FRINGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for WAVECORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf'. INFO stpipe.Spec2Pipeline:calwebb_spec2.py:88 Starting calwebb_spec2 ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:105 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong INFO stpipe.Spec2Pipeline:calwebb_spec2.py:171 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits ... DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Spec2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:347 Science data does not allow fringe correction. Skipping "fringe". INFO stpipe.Spec2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:367 Step bkg_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:371 Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None} INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:401 Step skipped. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:470 Step bkg_subtract done INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:367 Step imprint_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:371 Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:401 Step skipped. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:470 Step imprint_subtract done INFO stpipe.Spec2Pipeline.msa_flagging:step.py:367 Step msa_flagging running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.msa_flagging:step.py:371 Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.msa_flagging:step.py:401 Step skipped. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:470 Step msa_flagging done INFO stpipe.Spec2Pipeline.flat_field:step.py:367 Step flat_field running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSGRISM DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=256 INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:336 slice xstart=0, xstop=2048, ystart=0, ystop=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:336 slice xstart=0, xstop=2048, ystart=0, ystop=256 DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". ___________ ERROR at setup of test_nircam_tsgrism_stage2[extract_2d] ___________ jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError ___________ ERROR at setup of test_nircam_tsgrism_stage2[flat_field] ___________ jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError __________ ERROR at setup of test_nircam_tsgrism_stage2[o012_crfints] __________ jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError ____________ ERROR at setup of test_nircam_tsgrism_stage2[srctype] _____________ jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError ____________ ERROR at setup of test_nircam_tsgrism_stage2[x1dints] _____________ jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError _____________ ERROR at setup of test_nircam_tsgrism_stage3_x1dints _____________ jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError ______________ ERROR at setup of test_nircam_tsgrism_stage3_whtlt ______________ jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError ___________________ ERROR at call of test_nircam_setpointing ___________________ _jail = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_setpointing(_jail, rtdata, fitsdiff_default_kwargs): """ Regression test of the set_telescope_pointing script on a level-1b NIRCam file. """ # Get SIAF PRD database file siaf_path = rtdata.get_data("common/prd.db") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits") # The add_wcs function overwrites its input rtdata.output = rtdata.input # Call the WCS routine, using the ENGDB_Service try: > add_wcs(rtdata.input, siaf_path=siaf_path) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:91: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/lib/set_telescope_pointing.py:213: in add_wcs model.save(filename) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff629877e80> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...'siaf_yref_sci': 130.0, 'ra_ref': 98.81825770661473, 'dec_ref': -66.83269796058875, 'roll_ref': 143.25260098398002}}},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...64'}, {'name': 'int_mid_BJD_TDB', 'datatype': 'float64'}, {'name': 'int_end_BJD_TDB', 'datatype': 'float64'}])]))]))])} error = <ValidationError: "0 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_setpointing>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/posixpath.py:152: TypeError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-06-04 04:48:05,849 - stpipe - INFO - Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits 2021-06-04 04:48:05,927 - stpipe - INFO - Updating WCS for aperture NRCA5_GRISM256_F444W 2021-06-04 04:48:05,927 - stpipe - INFO - Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro 2021-06-04 04:48:05,927 - stpipe - INFO - Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 2021-06-04 04:48:05,928 - stpipe - INFO - loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro 2021-06-04 04:48:05,929 - stpipe - INFO - TSO exposure: 2021-06-04 04:48:05,929 - stpipe - INFO - setting xref_sci to 769.0 2021-06-04 04:48:05,930 - stpipe - INFO - setting yref_sci to 130.0 2021-06-04 04:48:05,930 - stpipe - INFO - Updating wcs from telemetry. 2021-06-04 04:48:05,930 - stpipe - INFO - Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 2021-06-04 04:48:05,930 - stpipe - INFO - Telemetry search tolerance = 60 2021-06-04 04:48:05,930 - stpipe - INFO - Reduction function = <function pointing_from_average at 0x7ff62add5c10> 2021-06-04 04:48:06,460 - stpipe - INFO - Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ 2021-06-04 04:48:07,022 - stpipe - INFO - Reduced set of pointings: 2021-06-04 04:48:07,022 - stpipe - INFO - Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-06-04 04:48:07,023 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-06-04 04:48:07,023 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-06-04 04:48:07,023 - stpipe - INFO - Successful read of engineering quaternions: 2021-06-04 04:48:07,024 - stpipe - INFO - Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-06-04 04:48:07,024 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-06-04 04:48:07,024 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-06-04 04:48:07,025 - stpipe - INFO - Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. 2021-06-04 04:48:07,025 - stpipe - INFO - Setting ENGQLPTG keyword to CALCULATED 2021-06-04 04:48:07,025 - stpipe - INFO - Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) 2021-06-04 04:48:07,025 - stpipe - INFO - V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) 2021-06-04 04:48:07,028 - stpipe - INFO - Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) 2021-06-04 04:48:07,030 - stpipe - INFO - Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7ff62add5c10> INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7ff62add5c10> DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 298544 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 298544 INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) INFO stpipe:util.py:937 Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 INFO stpipe:util.py:937 Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 _____________ ERROR at setup of test_nircam_tsimg_stage2[calints] ______________ jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2 and 3 pipelines on NIRCam TSO image data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run the calwebb_tso-image2 pipeline on each of the 2 inputs rate_files = [ "nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits", "nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits" ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_tso-image2.cfg", rtdata.input] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:451: in run self.save_model(result, idx=idx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:919: in save_model output_path = model.save( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff6294bb670> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...642 ], [0.9929633 , 0.9929597 , 0.992956 , ..., 0.99105275, 0.99105495, 0.9910572 ]], dtype=float32)},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...ance due to flat field'), ('fits_hdu', 'VAR_FLAT'), ('max_ndim', 3), ('default', 0.0), ('datatype', 'float32')]))]))])} error = <ValidationError: "0 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationError ---------------------------- Captured stdout setup ----------------------------- ---------------------------------------------------------------------- ERROR RUNNING STEP 'Image2Pipeline': 0 is not of type 'string' Failed validating 'type' in schema['pro perties']['meta']['properties']['dither']['properties']['dither_po ints']: OrderedDict([('title', 'Total number of points in primary dither pattern'), ('type', 'string'), ('fits_keyword', 'NDITHPTS')]) On instance['meta']['dither']['dither_points']: 0 ---------------------------------------------------------------------- ---------------------------- Captured stderr setup ----------------------------- 2021-06-04 04:48:07,422 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf 2021-06-04 04:48:07,435 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:48:07,436 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:48:07,437 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:48:07,438 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:48:07,438 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:48:07,439 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:48:07,439 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:48:07,439 - stpipe - INFO - OS: Linux 2021-06-04 04:48:07,589 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits',). 2021-06-04 04:48:07,592 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:48:07,640 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] 2021-06-04 04:48:07,652 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. 2021-06-04 04:48:07,654 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:48:07,654 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:48:07,654 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:48:07,654 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:48:07,654 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. 2021-06-04 04:48:07,656 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:48:07,656 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. 2021-06-04 04:48:07,657 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:48:07,660 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits'. 2021-06-04 04:48:07,661 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:48:07,661 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:48:07,661 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:48:07,661 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:48:07,662 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:48:07,662 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 2021-06-04 04:48:07,662 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits ... 2021-06-04 04:48:07,858 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-06-04 04:48:07,859 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:48:08,130 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-06-04 04:48:08,131 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-06-04 04:48:08,131 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:48:08,164 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:48:08,318 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-06-04 04:48:08,319 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:48:09,848 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2021-06-04 04:48:09,861 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:48:10,035 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-06-04 04:48:10,036 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} 2021-06-04 04:48:10,063 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits 2021-06-04 04:48:10,063 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits 2021-06-04 04:48:10,119 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:48:10,119 - stpipe.Image2Pipeline.photom - INFO - detector: NRCB1 2021-06-04 04:48:10,119 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_TSIMAGE 2021-06-04 04:48:10,119 - stpipe.Image2Pipeline.photom - INFO - filter: F210M 2021-06-04 04:48:10,119 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-06-04 04:48:10,554 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:48:10,557 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 6.1144 2021-06-04 04:48:10,564 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:48:10,564 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 2021-06-04 04:48:10,565 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Image2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Image2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSIMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:336 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:336 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is CubeModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 2.2267012997456e-14, PIXAR_A2 = 0.0009473538599634 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 2.2267012997456e-14, PIXAR_A2 = 0.0009473538599634 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 6.1144 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 6.1144 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 ___________ ERROR at setup of test_nircam_tsimg_stage2[o006_crfints] ___________ jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2 and 3 pipelines on NIRCam TSO image data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run the calwebb_tso-image2 pipeline on each of the 2 inputs rate_files = [ "nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits", "nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits" ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_tso-image2.cfg", rtdata.input] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:451: in run self.save_model(result, idx=idx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:919: in save_model output_path = model.save( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff6294bb670> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...642 ], [0.9929633 , 0.9929597 , 0.992956 , ..., 0.99105275, 0.99105495, 0.9910572 ]], dtype=float32)},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...ance due to flat field'), ('fits_hdu', 'VAR_FLAT'), ('max_ndim', 3), ('default', 0.0), ('datatype', 'float32')]))]))])} error = <ValidationError: "0 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationError ______________ ERROR at setup of test_nircam_tsimage_stage3_phot _______________ jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2 and 3 pipelines on NIRCam TSO image data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run the calwebb_tso-image2 pipeline on each of the 2 inputs rate_files = [ "nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits", "nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits" ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_tso-image2.cfg", rtdata.input] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:451: in run self.save_model(result, idx=idx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:919: in save_model output_path = model.save( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff6294bb670> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...642 ], [0.9929633 , 0.9929597 , 0.992956 , ..., 0.99105275, 0.99105495, 0.9910572 ]], dtype=float32)},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...ance due to flat field'), ('fits_hdu', 'VAR_FLAT'), ('max_ndim', 3), ('default', 0.0), ('datatype', 'float32')]))]))])} error = <ValidationError: "0 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationError =================================== FAILURES =================================== __________________ test_nircam_coron3_sci_exp[00001-psfalign] __________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...its', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits'} suffix = 'psfalign', exposure = '00001' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 213 E b: 205 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 41 time(s) in a, 40 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> IFU fore reference file information E Keyword [26] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [27] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [28] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [29] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [30] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [31] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [32] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [33] has different values: E a> Photometric reference file information E ? ^^^^ ^^^^^ E b> PSF mask reference file information E ? ^^^ ^^^ E Keyword [34] has different values: E a> PSF mask reference file information E ? ^^^^^^ - E b> Regions reference file information E ? ^^^^^^ E Keyword [35] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [36] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [37] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [38] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [39] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [40] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 44 E b: 46 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Data contains differences: E Data differs at [1, 1, 1, 1]: E a> 0.8174741 E b> 0.81740034 E Data differs at [2, 1, 1, 1]: E a> 0.74938107 E b> 0.7494544 E Data differs at [3, 1, 1, 1]: E a> 0.73527235 E b> 0.73519963 E Data differs at [4, 1, 1, 1]: E a> 1.3193785 E b> 1.3194506 E Data differs at [5, 1, 1, 1]: E a> 1.8136498 E b> 1.8135782 E Data differs at [6, 1, 1, 1]: E a> 1.9346659 E b> 1.9347368 E Data differs at [7, 1, 1, 1]: E a> 1.8578717 E ? ^ ^ E b> 1.8578012 E ? ^ ^ E Data differs at [8, 1, 1, 1]: E a> 1.5832175 E ? ^ ^ E b> 1.5832874 E ? ^ ^ E Data differs at [9, 1, 1, 1]: E a> 1.1997532 E b> 1.1996839 E Data differs at [10, 1, 1, 1]: E a> 1.142912 E b> 1.1429807 E ... E 5253695 different pixels found (42.52% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 1, 5, 1]: E a> 0.9378694 E b> 0.9381585 E Data differs at [2, 1, 5, 1]: E a> 0.90263975 E b> 0.90290546 E Data differs at [3, 1, 5, 1]: E a> 0.9586701 E b> 0.9595252 E Data differs at [4, 1, 5, 1]: E a> 1.1451049 E b> 1.1457568 E Data differs at [5, 1, 5, 1]: E a> 1.3068402 E b> 1.3070675 E Data differs at [6, 1, 5, 1]: E a> 1.3872736 E b> 1.3873881 E Data differs at [7, 1, 5, 1]: E a> 1.408235 E ? - E b> 1.4082963 E ? ++ E Data differs at [8, 1, 5, 1]: E a> 1.3097227 E b> 1.3095431 E Data differs at [9, 1, 5, 1]: E a> 1.1201289 E b> 1.1199646 E Data differs at [10, 1, 5, 1]: E a> 1.0321367 E b> 1.0319871 E ... E 1787435 different pixels found (14.46% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff628f51c70>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError ---------------------------- Captured stderr setup ----------------------------- 2021-06-04 04:38:51,470 - stpipe.Coron3Pipeline - INFO - Coron3Pipeline instance created. 2021-06-04 04:38:51,471 - stpipe.Coron3Pipeline.stack_refs - INFO - StackRefsStep instance created. 2021-06-04 04:38:51,472 - stpipe.Coron3Pipeline.align_refs - INFO - AlignRefsStep instance created. 2021-06-04 04:38:51,472 - stpipe.Coron3Pipeline.klip - INFO - KlipStep instance created. 2021-06-04 04:38:51,473 - stpipe.Coron3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-06-04 04:38:51,474 - stpipe.Coron3Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:38:51,474 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:38:51,474 - stpipe - INFO - OS: Linux 2021-06-04 04:38:51,594 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_20170327t121212_coron3_001_asn.json',). 2021-06-04 04:38:51,597 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'steps': {'stack_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'}, 'align_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'}, 'klip': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:38:51,598 - stpipe.Coron3Pipeline - INFO - Starting calwebb_coron3 ... 2021-06-04 04:38:51,758 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00003_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-06-04 04:38:51,768 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:38:51,770 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-06-04 04:38:51,932 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00005_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-06-04 04:38:51,934 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:38:51,935 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-06-04 04:38:52,087 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00004_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-06-04 04:38:52,089 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:38:52,090 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-06-04 04:38:52,161 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00001_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-06-04 04:38:52,162 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:38:52,163 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-06-04 04:38:52,243 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00002_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-06-04 04:38:52,246 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:38:52,246 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-06-04 04:38:52,832 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00003_nrcb3_calints.fits>,). 2021-06-04 04:38:52,833 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:38:52,840 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-06-04 04:38:53,551 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-06-04 04:38:55,706 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00003_nrcb3_a3001_crfints.fits 2021-06-04 04:38:55,706 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:38:55,829 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00005_nrcb3_calints.fits>,). 2021-06-04 04:38:55,830 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:38:55,837 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-06-04 04:38:56,517 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-06-04 04:38:58,621 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00005_nrcb3_a3001_crfints.fits 2021-06-04 04:38:58,621 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:38:58,748 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00004_nrcb3_calints.fits>,). 2021-06-04 04:38:58,749 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:38:58,757 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-06-04 04:38:59,432 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-06-04 04:39:01,475 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00004_nrcb3_a3001_crfints.fits 2021-06-04 04:39:01,475 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:39:01,604 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs running with args (<ModelContainer>,). 2021-06-04 04:39:01,605 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'} 2021-06-04 04:39:01,623 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 1 to output stack 2021-06-04 04:39:01,634 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 2 to output stack 2021-06-04 04:39:01,642 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 3 to output stack 2021-06-04 04:39:01,685 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs done 2021-06-04 04:39:01,767 - stpipe.Coron3Pipeline - INFO - Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits 2021-06-04 04:39:01,963 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_calints.fits>,). 2021-06-04 04:39:01,964 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:39:01,972 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 5 inputs 2021-06-04 04:39:02,108 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 5 images 2021-06-04 04:39:02,475 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_crfints.fits 2021-06-04 04:39:02,475 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:39:02,591 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). 2021-06-04 04:39:02,592 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} 2021-06-04 04:39:02,599 - stpipe.Coron3Pipeline.align_refs - INFO - Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits 2021-06-04 04:39:41,400 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs done 2021-06-04 04:39:41,660 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits 2021-06-04 04:39:41,803 - stpipe.Coron3Pipeline.klip - INFO - Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits>). 2021-06-04 04:39:41,803 - stpipe.Coron3Pipeline.klip - INFO - Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} 2021-06-04 04:39:41,812 - stpipe.Coron3Pipeline.klip - INFO - KL transform truncation = 50 2021-06-04 04:39:42,422 - stpipe.Coron3Pipeline.klip - INFO - Step klip done 2021-06-04 04:39:42,526 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits 2021-06-04 04:39:42,904 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_calints.fits>,). 2021-06-04 04:39:42,905 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:39:42,913 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 5 inputs 2021-06-04 04:39:43,054 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 5 images 2021-06-04 04:39:43,431 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_crfints.fits 2021-06-04 04:39:43,431 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:39:43,559 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). 2021-06-04 04:39:43,560 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'align_refs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} 2021-06-04 04:39:43,568 - stpipe.Coron3Pipeline.align_refs - INFO - Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits 2021-06-04 04:40:22,435 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs done 2021-06-04 04:40:22,685 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits 2021-06-04 04:40:22,809 - stpipe.Coron3Pipeline.klip - INFO - Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits>). 2021-06-04 04:40:22,809 - stpipe.Coron3Pipeline.klip - INFO - Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'klip', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} 2021-06-04 04:40:22,817 - stpipe.Coron3Pipeline.klip - INFO - KL transform truncation = 50 2021-06-04 04:40:23,338 - stpipe.Coron3Pipeline.klip - INFO - Step klip done 2021-06-04 04:40:23,437 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits 2021-06-04 04:40:23,737 - stpipe.Coron3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-06-04 04:40:23,738 - stpipe.Coron3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': False, 'allowed_memory': None} 2021-06-04 04:40:23,757 - stpipe.Coron3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-06-04 04:40:23,985 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,065 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,145 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,224 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,304 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,385 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,464 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,544 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,623 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,703 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,724 - stpipe.Coron3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 2021-06-04 04:40:24,726 - stpipe.Coron3Pipeline.resample - INFO - Step resample done 2021-06-04 04:40:25,867 - stpipe.Coron3Pipeline - INFO - Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits 2021-06-04 04:40:25,868 - stpipe.Coron3Pipeline - INFO - ...ending calwebb_coron3 2021-06-04 04:40:25,868 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline done ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-CORON3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-CORON3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-CORON3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-CORON3PIPELINE reference files found. INFO stpipe.Coron3Pipeline:step.py:321 Coron3Pipeline instance created. INFO stpipe.Coron3Pipeline.stack_refs:step.py:321 StackRefsStep instance created. INFO stpipe.Coron3Pipeline.align_refs:step.py:321 AlignRefsStep instance created. INFO stpipe.Coron3Pipeline.klip:step.py:321 KlipStep instance created. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Coron3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Coron3Pipeline:step.py:367 Step Coron3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_20170327t121212_coron3_001_asn.json',). INFO stpipe.Coron3Pipeline:step.py:371 Step Coron3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'steps': {'stack_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'}, 'align_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'}, 'klip': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} INFO stpipe.Coron3Pipeline:calwebb_coron3.py:51 Starting calwebb_coron3 ... DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00003_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00005_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00004_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00001_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00002_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00003_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00003_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00005_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00005_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00004_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24956 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24956 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00004_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.stack_refs:step.py:367 Step stack_refs running with args (<ModelContainer>,). INFO stpipe.Coron3Pipeline.stack_refs:step.py:371 Step stack_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'} DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 1 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 1 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 2 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 2 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 3 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 3 to output stack DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.stack_refs:step.py:470 Step stack_refs done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 5 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00001_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.align_refs:step.py:367 Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). INFO stpipe.Coron3Pipeline.align_refs:step.py:371 Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:align_refs_step.py:34 Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:step.py:470 Step align_refs done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits INFO stpipe.Coron3Pipeline.klip:step.py:367 Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits>). INFO stpipe.Coron3Pipeline.klip:step.py:371 Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:klip_step.py:30 KL transform truncation = 50 DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:step.py:470 Step klip done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 5 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00002_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.align_refs:step.py:367 Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). INFO stpipe.Coron3Pipeline.align_refs:step.py:371 Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'align_refs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:align_refs_step.py:34 Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:step.py:470 Step align_refs done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits INFO stpipe.Coron3Pipeline.klip:step.py:367 Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits>). INFO stpipe.Coron3Pipeline.klip:step.py:371 Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'klip', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:klip_step.py:30 KL transform truncation = 50 DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:step.py:470 Step klip done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Coron3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:resample_step.py:68 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 single=False DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 blendheaders=False DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 pixfrac=1.0 DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 kernel=square DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 fillval=INDEF DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 pscale_ratio=1.0 DEBUG stpipe.Coron3Pipeline.resample:resample.py:76 Output mosaic size: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:76 Output mosaic size: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Coron3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Coron3Pipeline.resample:util.py:406 Model size 97.5K available system memory 119.5G DEBUG stpipe.Coron3Pipeline.resample:util.py:406 Model size 97.5K available system memory 119.5G DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 INFO stpipe.Coron3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 INFO stpipe.Coron3Pipeline.resample:step.py:470 Step resample done DEBUG stpipe.Coron3Pipeline:calwebb_coron3.py:167 Blending metadata for <ImageModel(158, 158)> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits INFO stpipe.Coron3Pipeline:calwebb_coron3.py:180 ...ending calwebb_coron3 INFO stpipe.Coron3Pipeline:step.py:470 Step Coron3Pipeline done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 ___________________ test_nircam_coron3_sci_exp[00001-psfsub] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits'} suffix = 'psfsub', exposure = '00001' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 216 E b: 208 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 42 time(s) in a, 41 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [26] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [27] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [28] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [29] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [30] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [31] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [32] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [33] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [34] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [35] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [36] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [37] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [38] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [39] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [40] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [41] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Data contains differences: E Data differs at [1, 1, 1]: E a> 0.010976201 E b> 0.011709869 E Data differs at [2, 1, 1]: E a> -0.010925648 E b> -0.008756997 E Data differs at [3, 1, 1]: E a> 0.0027528903 E b> 0.005458541 E Data differs at [4, 1, 1]: E a> 0.0055384696 E b> 0.0047238334 E Data differs at [5, 1, 1]: E a> -0.014096385 E b> -0.0135342665 E Data differs at [6, 1, 1]: E a> -0.0004161552 E b> -0.00067709974 E Data differs at [7, 1, 1]: E a> -0.022358174 E b> -0.017525608 E Data differs at [8, 1, 1]: E a> -0.008460747 E b> -0.0068258205 E Data differs at [9, 1, 1]: E a> -0.007704167 E b> -0.008692313 E Data differs at [10, 1, 1]: E a> -0.0033204374 E b> -0.0070272596 E ... E 124650 different pixels found (99.86% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 1, 1]: E a> 0.0071968297 E b> 0.005871514 E Data differs at [2, 1, 1]: E a> 0.0065628793 E b> 0.005677722 E Data differs at [3, 1, 1]: E a> 0.008030228 E b> 0.0077774227 E Data differs at [4, 1, 1]: E a> 0.0099741835 E b> 0.008827844 E Data differs at [5, 1, 1]: E a> 0.010747912 E b> 0.00967869 E Data differs at [6, 1, 1]: E a> 0.009266905 E b> 0.008766226 E Data differs at [7, 1, 1]: E a> 0.0094051855 E b> 0.009492439 E Data differs at [8, 1, 1]: E a> 0.01048503 E b> 0.009703036 E Data differs at [9, 1, 1]: E a> 0.008999568 E b> 0.007910081 E Data differs at [10, 1, 1]: E a> 0.007691582 E b> 0.007911101 E ... E 124250 different pixels found (99.54% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6298b62e0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 __________________ test_nircam_coron3_sci_exp[00001-crfints] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00001' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 215 E b: 207 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 42 time(s) in a, 41 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [26] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [27] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [28] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [29] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [30] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [31] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [32] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [33] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [34] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [35] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [36] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [37] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [38] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [39] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [40] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [41] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff627a4f0d0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 __________________ test_nircam_coron3_sci_exp[00002-psfalign] __________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...its', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits'} suffix = 'psfalign', exposure = '00002' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 213 E b: 205 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 41 time(s) in a, 40 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> IFU fore reference file information E Keyword [26] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [27] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [28] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [29] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [30] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [31] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [32] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [33] has different values: E a> Photometric reference file information E ? ^^^^ ^^^^^ E b> PSF mask reference file information E ? ^^^ ^^^ E Keyword [34] has different values: E a> PSF mask reference file information E ? ^^^^^^ - E b> Regions reference file information E ? ^^^^^^ E Keyword [35] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [36] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [37] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [38] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [39] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [40] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 44 E b: 46 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Data contains differences: E Data differs at [1, 1, 1, 1]: E a> 0.8174741 E b> 0.81740034 E Data differs at [2, 1, 1, 1]: E a> 0.74938107 E b> 0.7494544 E Data differs at [3, 1, 1, 1]: E a> 0.73527235 E b> 0.73519963 E Data differs at [4, 1, 1, 1]: E a> 1.3193785 E b> 1.3194506 E Data differs at [5, 1, 1, 1]: E a> 1.8136498 E b> 1.8135782 E Data differs at [6, 1, 1, 1]: E a> 1.9346659 E b> 1.9347368 E Data differs at [7, 1, 1, 1]: E a> 1.8578717 E ? ^ ^ E b> 1.8578012 E ? ^ ^ E Data differs at [8, 1, 1, 1]: E a> 1.5832175 E ? ^ ^ E b> 1.5832874 E ? ^ ^ E Data differs at [9, 1, 1, 1]: E a> 1.1997532 E b> 1.1996839 E Data differs at [10, 1, 1, 1]: E a> 1.142912 E b> 1.1429807 E ... E 5253695 different pixels found (42.52% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 1, 5, 1]: E a> 0.9378694 E b> 0.9381585 E Data differs at [2, 1, 5, 1]: E a> 0.90263975 E b> 0.90290546 E Data differs at [3, 1, 5, 1]: E a> 0.9586701 E b> 0.9595252 E Data differs at [4, 1, 5, 1]: E a> 1.1451049 E b> 1.1457568 E Data differs at [5, 1, 5, 1]: E a> 1.3068402 E b> 1.3070675 E Data differs at [6, 1, 5, 1]: E a> 1.3872736 E b> 1.3873881 E Data differs at [7, 1, 5, 1]: E a> 1.408235 E ? - E b> 1.4082963 E ? ++ E Data differs at [8, 1, 5, 1]: E a> 1.3097227 E b> 1.3095431 E Data differs at [9, 1, 5, 1]: E a> 1.1201289 E b> 1.1199646 E Data differs at [10, 1, 5, 1]: E a> 1.0321367 E b> 1.0319871 E ... E 1787435 different pixels found (14.46% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff627b68e20>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 ___________________ test_nircam_coron3_sci_exp[00002-psfsub] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits'} suffix = 'psfsub', exposure = '00002' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 216 E b: 208 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 42 time(s) in a, 41 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [26] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [27] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [28] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [29] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [30] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [31] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [32] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [33] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [34] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [35] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [36] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [37] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [38] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [39] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [40] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [41] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Data contains differences: E Data differs at [1, 1, 1]: E a> 0.010976201 E b> 0.011709869 E Data differs at [2, 1, 1]: E a> -0.010925648 E b> -0.008756997 E Data differs at [3, 1, 1]: E a> 0.0027528903 E b> 0.005458541 E Data differs at [4, 1, 1]: E a> 0.0055384696 E b> 0.0047238334 E Data differs at [5, 1, 1]: E a> -0.014096385 E b> -0.0135342665 E Data differs at [6, 1, 1]: E a> -0.0004161552 E b> -0.00067709974 E Data differs at [7, 1, 1]: E a> -0.022358174 E b> -0.017525608 E Data differs at [8, 1, 1]: E a> -0.008460747 E b> -0.0068258205 E Data differs at [9, 1, 1]: E a> -0.007704167 E b> -0.008692313 E Data differs at [10, 1, 1]: E a> -0.0033204374 E b> -0.0070272596 E ... E 124650 different pixels found (99.86% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 1, 1]: E a> 0.0071968297 E b> 0.005871514 E Data differs at [2, 1, 1]: E a> 0.0065628793 E b> 0.005677722 E Data differs at [3, 1, 1]: E a> 0.008030228 E b> 0.0077774227 E Data differs at [4, 1, 1]: E a> 0.0099741835 E b> 0.008827844 E Data differs at [5, 1, 1]: E a> 0.010747912 E b> 0.00967869 E Data differs at [6, 1, 1]: E a> 0.009266905 E b> 0.008766226 E Data differs at [7, 1, 1]: E a> 0.0094051855 E b> 0.009492439 E Data differs at [8, 1, 1]: E a> 0.01048503 E b> 0.009703036 E Data differs at [9, 1, 1]: E a> 0.008999568 E b> 0.007910081 E Data differs at [10, 1, 1]: E a> 0.007691582 E b> 0.007911101 E ... E 124250 different pixels found (99.54% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6293451f0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 __________________ test_nircam_coron3_sci_exp[00002-crfints] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00002' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 215 E b: 207 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 42 time(s) in a, 41 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [26] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [27] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [28] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [29] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [30] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [31] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [32] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [33] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [34] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [35] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [36] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [37] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [38] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [39] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [40] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [41] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff62863af10>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 __________________ test_nircam_coron3_psf_exp[00003-crfints] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00003' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["crfints"]) @pytest.mark.parametrize("exposure", ["00003", "00004", "00005"]) def test_nircam_coron3_psf_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 211 E b: 210 E Inconsistent duplicates of keyword '' : E Occurs 40 time(s) in a, 39 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> IFU fore reference file information E Keyword [26] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [27] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [28] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [29] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [30] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [31] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [32] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [33] has different values: E a> Photometric reference file information E ? ^^ ^^^^^^^^ E b> Regions reference file information E ? ^^^^ ^^ E Keyword [34] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [35] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [36] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [37] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [38] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [39] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [83, 77, 1]: E a> 0 E b> 17 E Data differs at [79, 78, 1]: E a> 0 E b> 17 E Data differs at [74, 80, 1]: E a> 0 E b> 17 E Data differs at [80, 81, 1]: E a> 0 E b> 17 E Data differs at [75, 83, 1]: E a> 0 E b> 17 E Data differs at [76, 94, 1]: E a> 0 E b> 17 E Data differs at [81, 62, 2]: E a> 0 E b> 17 E Data differs at [72, 69, 2]: E a> 0 E b> 17 E Data differs at [74, 69, 2]: E a> 0 E b> 17 E Data differs at [72, 70, 2]: E a> 0 E b> 17 E ... E 366 different pixels found (0.04% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff629091b20>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:55: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 __________________ test_nircam_coron3_psf_exp[00004-crfints] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00004' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["crfints"]) @pytest.mark.parametrize("exposure", ["00003", "00004", "00005"]) def test_nircam_coron3_psf_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 211 E b: 210 E Inconsistent duplicates of keyword '' : E Occurs 40 time(s) in a, 39 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> IFU fore reference file information E Keyword [26] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [27] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [28] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [29] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [30] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [31] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [32] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [33] has different values: E a> Photometric reference file information E ? ^^ ^^^^^^^^ E b> Regions reference file information E ? ^^^^ ^^ E Keyword [34] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [35] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [36] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [37] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [38] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [39] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [73, 71, 1]: E a> 0 E b> 17 E Data differs at [80, 78, 1]: E a> 0 E b> 17 E Data differs at [79, 81, 1]: E a> 0 E b> 17 E Data differs at [72, 69, 3]: E a> 0 E b> 17 E Data differs at [74, 69, 3]: E a> 0 E b> 17 E Data differs at [72, 70, 3]: E a> 0 E b> 17 E Data differs at [75, 70, 3]: E a> 0 E b> 17 E Data differs at [81, 79, 3]: E a> 0 E b> 17 E Data differs at [78, 80, 3]: E a> 0 E b> 17 E Data differs at [81, 80, 3]: E a> 0 E b> 17 E ... E 766 different pixels found (0.09% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff62ad74250>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:55: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 __________________ test_nircam_coron3_psf_exp[00005-crfints] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00005' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["crfints"]) @pytest.mark.parametrize("exposure", ["00003", "00004", "00005"]) def test_nircam_coron3_psf_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 211 E b: 210 E Inconsistent duplicates of keyword '' : E Occurs 40 time(s) in a, 39 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> IFU fore reference file information E Keyword [26] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [27] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [28] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [29] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [30] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [31] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [32] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [33] has different values: E a> Photometric reference file information E ? ^^ ^^^^^^^^ E b> Regions reference file information E ? ^^^^ ^^ E Keyword [34] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [35] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [36] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [37] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [38] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [39] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [81, 61, 5]: E a> 0 E b> 17 E Data differs at [81, 62, 5]: E a> 0 E b> 17 E Data differs at [82, 62, 5]: E a> 0 E b> 17 E Data differs at [81, 63, 5]: E a> 0 E b> 17 E Data differs at [84, 63, 5]: E a> 0 E b> 17 E Data differs at [87, 63, 5]: E a> 0 E b> 17 E Data differs at [78, 64, 5]: E a> 0 E b> 17 E Data differs at [90, 64, 5]: E a> 0 E b> 17 E Data differs at [78, 65, 5]: E a> 0 E b> 17 E Data differs at [89, 67, 5]: E a> 0 E b> 17 E ... E 590 different pixels found (0.07% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff627e67820>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:55: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 _____________________ test_nircam_coron3_product[psfstack] _____________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits'} suffix = 'psfstack' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfstack", "i2d"]) def test_nircam_coron3_product(run_pipeline, suffix, fitsdiff_default_kwargs): """Check final products of calwebb_coron3""" rtdata = run_pipeline output = "jw99999-a3001_t1_nircam_f140m-maskbar_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 210 E b: 202 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 40 time(s) in a, 39 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> IFU fore reference file information E Keyword [26] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [27] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [28] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [29] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [30] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [31] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [32] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [33] has different values: E a> Photometric reference file information E ? ^^ ^^^^^^^^ E b> Regions reference file information E ? ^^^^ ^^ E Keyword [34] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [35] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [36] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [37] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [38] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [39] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [83, 77, 1]: E a> 0 E b> 17 E Data differs at [79, 78, 1]: E a> 0 E b> 17 E Data differs at [74, 80, 1]: E a> 0 E b> 17 E Data differs at [80, 81, 1]: E a> 0 E b> 17 E Data differs at [75, 83, 1]: E a> 0 E b> 17 E Data differs at [76, 94, 1]: E a> 0 E b> 17 E Data differs at [81, 62, 2]: E a> 0 E b> 17 E Data differs at [72, 69, 2]: E a> 0 E b> 17 E Data differs at [74, 69, 2]: E a> 0 E b> 17 E Data differs at [72, 70, 2]: E a> 0 E b> 17 E ... E 1722 different pixels found (0.07% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff627dd93d0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:70: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 _______________________ test_nircam_coron3_product[i2d] ________________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits'} suffix = 'i2d' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfstack", "i2d"]) def test_nircam_coron3_product(run_pipeline, suffix, fitsdiff_default_kwargs): """Check final products of calwebb_coron3""" rtdata = run_pipeline output = "jw99999-a3001_t1_nircam_f140m-maskbar_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Files contain different numbers of HDUs: E a: 6 E b: 10 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 226 E b: 220 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Extra keyword 'PIXFRAC' in b: 1.0 E Extra keyword 'PXSCLRT' in b: 1.0 E Inconsistent duplicates of keyword '' : E Occurs 45 time(s) in a, 44 times in (b) E Keyword [10] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [11] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [12] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [13] has different values: E a> Time information E b> Guide star information E Keyword [14] has different values: E a> Guide star information E b> Reference file information E Keyword [15] has different values: E a> Reference file information E b> CRDS parameters E Keyword [16] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [17] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [18] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [19] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [20] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [21] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [22] has different values: E a> Distortion reference file information E b> Drizzle parameters reference file information E Keyword [23] has different values: E a> Drizzle parameters reference file information E ? ^^ -- -------- E b> Filter Offset reference file information E ? ^ ++++ ++ E Keyword [24] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [25] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [26] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [27] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [28] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [29] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [30] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [31] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [32] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [33] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [34] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [35] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [36] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [37] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [38] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [39] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [40] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [41] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [42] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [43] has different values: E a> Wavelength Range reference file information E b> Calibration step information E Keyword [44] has different values: E a> Calibration step information E b> Resample Parameters E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 42 E b: 37 E Extra keyword 'DEC_REF' in a: 13.27103461043576 E Extra keyword 'RA_REF' in a: 6.13521494459213 E Extra keyword 'ROLL_REF' in a: 0.0 E Extra keyword 'V2_REF' in a: -53.123823 E Extra keyword 'V3I_YANG' in a: -0.5509 E Extra keyword 'V3_REF' in a: -457.780381 E Extra keyword 'VPARITY' in a: -1 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Data contains differences: E Data differs at [1, 1]: E a> 0.010976203 E b> 0.011709871 E Data differs at [2, 1]: E a> -0.00070084154 E b> 0.00079789205 E Data differs at [3, 1]: E a> -0.0036351548 E b> -0.0011802895 E Data differs at [4, 1]: E a> 0.0042369864 E b> 0.005067105 E Data differs at [5, 1]: E a> -0.004918507 E b> -0.004999922 E Data differs at [6, 1]: E a> -0.0068134167 E b> -0.006689473 E Data differs at [7, 1]: E a> -0.012093205 E b> -0.009643498 E Data differs at [8, 1]: E a> -0.014964893 E b> -0.011833436 E Data differs at [9, 1]: E a> -0.008058395 E b> -0.007818433 E Data differs at [10, 1]: E a> -0.005373648 E b> -0.0078071207 E ... E 24876 different pixels found (99.65% different). E E Extension HDU 2: E Extension names differ: E a: CON E b: ERR E E Headers contain differences: E Keyword BITPIX has different values: E a> 32 E b> -32 E ? + E Keyword EXTNAME has different values: E a> CON E b> ERR E E Data contains differences: E Data differs at [1, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [2, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [3, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [4, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [5, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [6, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [7, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [8, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [9, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [10, 1]: E (int32) a> 1023 E (float32) b> nan E ... E 24964 different pixels found (100.00% different). E E Extension HDU 3: E Extension names differ: E a: WHT E b: CON E E Headers contain differences: E Keyword BITPIX has different values: E a> -32 E ? - E b> 32 E Keyword EXTNAME has different values: E a> WHT E b> CON E E Data contains differences: E Data differs at [1, 1]: E (float32) a> 2.5655375 E (int32) b> 1023 E Data differs at [2, 1]: E (float32) a> 4.8111296 E (int32) b> 1023 E Data differs at [3, 1]: E (float32) a> 4.814897 E (int32) b> 1023 E Data differs at [4, 1]: E (float32) a> 4.8190246 E (int32) b> 1023 E Data differs at [5, 1]: E (float32) a> 4.8231177 E (int32) b> 1023 E Data differs at [6, 1]: E (float32) a> 4.8271565 E (int32) b> 1023 E Data differs at [7, 1]: E (float32) a> 4.8311424 E (int32) b> 1023 E Data differs at [8, 1]: E (float32) a> 4.835076 E (int32) b> 1023 E Data differs at [9, 1]: E (float32) a> 4.8389535 E (int32) b> 1023 E Data differs at [10, 1]: E (float32) a> 4.842779 E (int32) b> 1023 E ... E 24964 different pixels found (100.00% different). E E Extension HDU 4: E Extension types differ: E a: BINTABLE E b: IMAGE E Extension names differ: E a: HDRTAB E b: WHT E E Headers contain differences: E Headers have different number of cards: E a: 788 E b: 9 E Extra keyword 'TFIELDS' in a: 389 E Extra keyword 'TTYPE1' in a: 'DATE' E Extra keyword 'TTYPE10' in a: 'DATAMODL' E Extra keyword 'TTYPE100' in a: 'EXPEND' E Extra keyword 'TTYPE101' in a: 'MJD-END' E Extra keyword 'TTYPE102' in a: 'TDB-BEG' E Extra keyword 'TTYPE103' in a: 'TDB-MID' E Extra keyword 'TTYPE104' in a: 'TDB-END' E Extra keyword 'TTYPE105' in a: 'READPATT' E Extra keyword 'TTYPE106' in a: 'EXSEGNUM' E Extra keyword 'TTYPE107' in a: 'EXSEGTOT' E Extra keyword 'TTYPE108' in a: 'NOUTPUTS' E Extra keyword 'TTYPE109' in a: 'NINTS' E Extra keyword 'TTYPE11' in a: 'TELESCOP' E Extra keyword 'TTYPE110' in a: 'INTSTART' E Extra keyword 'TTYPE111' in a: 'INTEND' E Extra keyword 'TTYPE112' in a: 'NGROUPS' E Extra keyword 'TTYPE113' in a: 'NFRAMES' E Extra keyword 'TTYPE114' in a: 'MIRNGRPS' E Extra keyword 'TTYPE115' in a: 'MIRNFRMS' E Extra keyword 'TTYPE116' in a: 'FRMDIVSR' E Extra keyword 'TTYPE117' in a: 'GROUPGAP' E Extra keyword 'TTYPE118' in a: 'DRPFRMS1' E Extra keyword 'TTYPE119' in a: 'DRPFRMS3' E Extra keyword 'TTYPE12' in a: 'HGA_MOVE' E Extra keyword 'TTYPE120' in a: 'NSAMPLES' E Extra keyword 'TTYPE121' in a: 'TSAMPLE' E Extra keyword 'TTYPE122' in a: 'TFRAME' E Extra keyword 'TTYPE123' in a: 'TGROUP' E Extra keyword 'TTYPE124' in a: 'EFFINTTM' E Extra keyword 'TTYPE125' in a: 'EFFEXPTM' E Extra keyword 'TTYPE126' in a: 'XPOSURE' E Extra keyword 'TTYPE127' in a: 'DURATION' E Extra keyword 'TTYPE128' in a: 'TELAPSE' E Extra keyword 'TTYPE129' in a: 'NRSTSTRT' E Extra keyword 'TTYPE13' in a: 'HGA_STRT' E Extra keyword 'TTYPE130' in a: 'NRESETS' E Extra keyword 'TTYPE131' in a: 'ZEROFRAM' E Extra keyword 'TTYPE132' in a: 'DATAPROB' E Extra keyword 'TTYPE133' in a: 'SCA_NUM' E Extra keyword 'TTYPE134' in a: 'DATAMODE' E Extra keyword 'TTYPE135' in a: 'NRS_NORM' E Extra keyword 'TTYPE136' in a: 'NRS_REF' E Extra keyword 'TTYPE137' in a: 'SCTARATE' E Extra keyword 'TTYPE138' in a: 'GAINFACT' E Extra keyword 'TTYPE139' in a: 'IS_IMPRT' E Extra keyword 'TTYPE14' in a: 'HGA_STOP' E Extra keyword 'TTYPE140' in a: 'IS_PSF' E Extra keyword 'TTYPE141' in a: 'SELFREF' E Extra keyword 'TTYPE142' in a: 'SUBARRAY' E Extra keyword 'TTYPE143' in a: 'SUBSTRT1' E Extra keyword 'TTYPE144' in a: 'SUBSTRT2' E Extra keyword 'TTYPE145' in a: 'SUBSIZE1' E Extra keyword 'TTYPE146' in a: 'SUBSIZE2' E Extra keyword 'TTYPE147' in a: 'FASTAXIS' E Extra keyword 'TTYPE148' in a: 'SLOWAXIS' E Extra keyword 'TTYPE149' in a: 'DETXCOR' E Extra keyword 'TTYPE15' in a: 'PWFSEET' E Extra keyword 'TTYPE150' in a: 'DETYCOR' E Extra keyword 'TTYPE151' in a: 'DETXSIZ' E Extra keyword 'TTYPE152' in a: 'DETYSIZ' E Extra keyword 'TTYPE153' in a: 'PATTTYPE' E Extra keyword 'TTYPE154' in a: 'PRIDTYPE' E Extra keyword 'TTYPE155' in a: 'PRIDTPTS' E Extra keyword 'TTYPE156' in a: 'PATT_NUM' E Extra keyword 'TTYPE157' in a: 'PATTSTRT' E Extra keyword 'TTYPE158' in a: 'NUMDTHPT' E Extra keyword 'TTYPE159' in a: 'PATTNPTS' E Extra keyword 'TTYPE16' in a: 'NWFSEST' E Extra keyword 'TTYPE160' in a: 'PATTSIZE' E Extra keyword 'TTYPE161' in a: 'SMGRDPAT' E Extra keyword 'TTYPE162' in a: 'SUBPXPTS' E Extra keyword 'TTYPE163' in a: 'SUBPXPAT' E Extra keyword 'TTYPE164' in a: 'SPEC_NUM' E Extra keyword 'TTYPE165' in a: 'SPECNSTP' E Extra keyword 'TTYPE166' in a: 'SPECSTEP' E Extra keyword 'TTYPE167' in a: 'SPCOFFST' E Extra keyword 'TTYPE168' in a: 'SPAT_NUM' E Extra keyword 'TTYPE169' in a: 'SPATNSTP' E Extra keyword 'TTYPE17' in a: 'ASNPOOL' E Extra keyword 'TTYPE170' in a: 'SPATSTEP' E Extra keyword 'TTYPE171' in a: 'SPTOFFST' E Extra keyword 'TTYPE172' in a: 'XOFFSET' E Extra keyword 'TTYPE173' in a: 'YOFFSET' E Extra keyword 'TTYPE174' in a: 'REFFRAME' E Extra keyword 'TTYPE175' in a: 'EPH_TYPE' E Extra keyword 'TTYPE176' in a: 'EPH_TIME' E Extra keyword 'TTYPE177' in a: 'JWST_X' E Extra keyword 'TTYPE178' in a: 'JWST_Y' E Extra keyword 'TTYPE179' in a: 'JWST_Z' E Extra keyword 'TTYPE18' in a: 'ASNTABLE' E Extra keyword 'TTYPE180' in a: 'JWST_DX' E Extra keyword 'TTYPE181' in a: 'JWST_DY' E Extra keyword 'TTYPE182' in a: 'JWST_DZ' E Extra keyword 'TTYPE183' in a: 'APERNAME' E Extra keyword 'TTYPE184' in a: 'PPS_APER' E Extra keyword 'TTYPE185' in a: 'PA_APER' E Extra keyword 'TTYPE186' in a: 'VA_RA' E Extra keyword 'TTYPE187' in a: 'VA_DEC' E Extra keyword 'TTYPE188' in a: 'VA_SCALE' E Extra keyword 'TTYPE189' in a: 'BARTDELT' E Extra keyword 'TTYPE19' in a: 'TITLE' E Extra keyword 'TTYPE190' in a: 'BSTRTIME' E Extra keyword 'TTYPE191' in a: 'BENDTIME' E Extra keyword 'TTYPE192' in a: 'BMIDTIME' E Extra keyword 'TTYPE193' in a: 'HELIDELT' E Extra keyword 'TTYPE194' in a: 'HSTRTIME' E Extra keyword 'TTYPE195' in a: 'HENDTIME' E Extra keyword 'TTYPE196' in a: 'HMIDTIME' E Extra keyword 'TTYPE197' in a: 'FAM_LA1' E Extra keyword 'TTYPE198' in a: 'FASTEP1' E Extra keyword 'TTYPE199' in a: 'FAUNIT1' E Extra keyword 'TTYPE2' in a: 'ORIGIN' E Extra keyword 'TTYPE20' in a: 'PI_NAME' E Extra keyword 'TTYPE200' in a: 'FAPHASE1' E Extra keyword 'TTYPE201' in a: 'FA1VALUE' E Extra keyword 'TTYPE202' in a: 'FAM_LA2' E Extra keyword 'TTYPE203' in a: 'FASTEP2' E Extra keyword 'TTYPE204' in a: 'FAUNIT2' E Extra keyword 'TTYPE205' in a: 'FAPHASE2' E Extra keyword 'TTYPE206' in a: 'FA2VALUE' E Extra keyword 'TTYPE207' in a: 'FAM_LA3' E Extra keyword 'TTYPE208' in a: 'FASTEP3' E Extra keyword 'TTYPE209' in a: 'FAUNIT3' E Extra keyword 'TTYPE21' in a: 'CATEGORY' E Extra keyword 'TTYPE210' in a: 'FAPHASE3' E Extra keyword 'TTYPE211' in a: 'FA3VALUE' E Extra keyword 'TTYPE212' in a: 'RMA_POS' E Extra keyword 'TTYPE213' in a: 'FCSRLPOS' E Extra keyword 'TTYPE214' in a: 'GS_ORDER' E Extra keyword 'TTYPE215' in a: 'GSSTRTTM' E Extra keyword 'TTYPE216' in a: 'GSENDTIM' E Extra keyword 'TTYPE217' in a: 'GDSTARID' E Extra keyword 'TTYPE218' in a: 'GS_RA' E Extra keyword 'TTYPE219' in a: 'GS_DEC' E Extra keyword 'TTYPE22' in a: 'SUBCAT' E Extra keyword 'TTYPE220' in a: 'GS_URA' E Extra keyword 'TTYPE221' in a: 'GS_UDEC' E Extra keyword 'TTYPE222' in a: 'GS_MAG' E Extra keyword 'TTYPE223' in a: 'GS_UMAG' E Extra keyword 'TTYPE224' in a: 'PCS_MODE' E Extra keyword 'TTYPE225' in a: 'VISITEND' E Extra keyword 'TTYPE226' in a: 'GSACSTAT' E Extra keyword 'TTYPE227' in a: 'GSCENTX' E Extra keyword 'TTYPE228' in a: 'GSCENTY' E Extra keyword 'TTYPE229' in a: 'GS_EPOCH' E Extra keyword 'TTYPE23' in a: 'SCICAT' E Extra keyword 'TTYPE230' in a: 'GS_MURA' E Extra keyword 'TTYPE231' in a: 'GS_MUDEC' E Extra keyword 'TTYPE232' in a: 'GS_PARA' E Extra keyword 'TTYPE233' in a: 'CRDS_VER' E Extra keyword 'TTYPE234' in a: 'CRDS_CTX' E Extra keyword 'TTYPE235' in a: 'R_AREA' E Extra keyword 'TTYPE236' in a: 'R_MSAOPE' E Extra keyword 'TTYPE237' in a: 'R_BARSHA' E Extra keyword 'TTYPE238' in a: 'R_CAMERA' E Extra keyword 'TTYPE239' in a: 'R_COLLIM' E Extra keyword 'TTYPE24' in a: 'CONT_ID' E Extra keyword 'TTYPE240' in a: 'R_CUBPAR' E Extra keyword 'TTYPE241' in a: 'R_DARK' E Extra keyword 'TTYPE242' in a: 'R_DISPER' E Extra keyword 'TTYPE243' in a: 'R_DISTOR' E Extra keyword 'TTYPE244' in a: 'R_DRZPAR' E Extra keyword 'TTYPE245' in a: 'R_EXTR1D' E Extra keyword 'TTYPE246' in a: 'R_FILOFF' E Extra keyword 'TTYPE247' in a: 'R_FLAT' E Extra keyword 'TTYPE248' in a: 'R_DFLAT' E Extra keyword 'TTYPE249' in a: 'R_FFLAT' E Extra keyword 'TTYPE25' in a: 'DATE-OBS' E Extra keyword 'TTYPE250' in a: 'R_SFLAT' E Extra keyword 'TTYPE251' in a: 'R_FORE' E Extra keyword 'TTYPE252' in a: 'R_FPA' E Extra keyword 'TTYPE253' in a: 'R_FRINGE' E Extra keyword 'TTYPE254' in a: 'R_GAIN' E Extra keyword 'TTYPE255' in a: 'R_IFUFOR' E Extra keyword 'TTYPE256' in a: 'R_IFUPOS' E Extra keyword 'TTYPE257' in a: 'R_IFUSLI' E Extra keyword 'TTYPE258' in a: 'R_IPC' E Extra keyword 'TTYPE259' in a: 'R_LASTFR' E Extra keyword 'TTYPE26' in a: 'TIME-OBS' E Extra keyword 'TTYPE260' in a: 'R_LINEAR' E Extra keyword 'TTYPE261' in a: 'R_MASK' E Extra keyword 'TTYPE262' in a: 'R_MSA' E Extra keyword 'TTYPE263' in a: 'R_OTE' E Extra keyword 'TTYPE264' in a: 'R_PTHLOS' E Extra keyword 'TTYPE265' in a: 'R_PERSAT' E Extra keyword 'TTYPE266' in a: 'R_PHOTOM' E Extra keyword 'TTYPE267' in a: 'R_PSFMAS' E Extra keyword 'TTYPE268' in a: 'R_READNO' E Extra keyword 'TTYPE269' in a: 'R_REFPIX' E Extra keyword 'TTYPE27' in a: 'DATE-BEG' E Extra keyword 'TTYPE270' in a: 'R_REGION' E Extra keyword 'TTYPE271' in a: 'R_RESAMP' E Extra keyword 'TTYPE272' in a: 'R_RESOL' E Extra keyword 'TTYPE273' in a: 'R_RESET' E Extra keyword 'TTYPE274' in a: 'R_RSCD' E Extra keyword 'TTYPE275' in a: 'R_SATURA' E Extra keyword 'TTYPE276' in a: 'R_SPCWCS' E Extra keyword 'TTYPE277' in a: 'R_STRAY' E Extra keyword 'TTYPE278' in a: 'R_SUPERB' E Extra keyword 'TTYPE279' in a: 'R_THRPUT' E Extra keyword 'TTYPE28' in a: 'DATE-END' E Extra keyword 'TTYPE280' in a: 'R_TRPDEN' E Extra keyword 'TTYPE281' in a: 'R_TRPPAR' E Extra keyword 'TTYPE282' in a: 'R_TSPHOT' E Extra keyword 'TTYPE283' in a: 'R_V2V3' E Extra keyword 'TTYPE284' in a: 'R_WAVCOR' E Extra keyword 'TTYPE285' in a: 'R_WAVRAN' E Extra keyword 'TTYPE286' in a: 'S_PSFALI' E Extra keyword 'TTYPE287' in a: 'S_AMIANA' E Extra keyword 'TTYPE288' in a: 'S_AMIAVG' E Extra keyword 'TTYPE289' in a: 'S_AMINOR' E Extra keyword 'TTYPE29' in a: 'OBS_ID' E Extra keyword 'TTYPE290' in a: 'S_WCS' E Extra keyword 'TTYPE291' in a: 'S_MTWCS' E Extra keyword 'TTYPE292' in a: 'S_BKDSUB' E Extra keyword 'TTYPE293' in a: 'S_BARSHA' E Extra keyword 'TTYPE294' in a: 'S_COMB1D' E Extra keyword 'TTYPE295' in a: 'S_IFUCUB' E Extra keyword 'TTYPE296' in a: 'S_DARK' E Extra keyword 'TTYPE297' in a: 'S_DQINIT' E Extra keyword 'TTYPE298' in a: 'S_TELEMI' E Extra keyword 'TTYPE299' in a: 'S_ERRINI' E Extra keyword 'TTYPE3' in a: 'TIMESYS' E Extra keyword 'TTYPE30' in a: 'VISIT_ID' E Extra keyword 'TTYPE300' in a: 'S_EXTR1D' E Extra keyword 'TTYPE301' in a: 'S_EXTR2D' E Extra keyword 'TTYPE302' in a: 'S_FRSTFR' E Extra keyword 'TTYPE303' in a: 'S_FLAT' E Extra keyword 'TTYPE304' in a: 'S_FRINGE' E Extra keyword 'TTYPE305' in a: 'S_GANSCL' E Extra keyword 'TTYPE306' in a: 'S_GRPSCL' E Extra keyword 'TTYPE307' in a: 'S_GUICDS' E Extra keyword 'TTYPE308' in a: 'S_IMPRNT' E Extra keyword 'TTYPE309' in a: 'S_IPC' E Extra keyword 'TTYPE31' in a: 'PROGRAM' E Extra keyword 'TTYPE310' in a: 'S_JUMP' E Extra keyword 'TTYPE311' in a: 'S_KLIP' E Extra keyword 'TTYPE312' in a: 'S_LASTFR' E Extra keyword 'TTYPE313' in a: 'S_LINEAR' E Extra keyword 'TTYPE314' in a: 'S_MSBSUB' E Extra keyword 'TTYPE315' in a: 'S_MRSMAT' E Extra keyword 'TTYPE316' in a: 'S_MSAFLG' E Extra keyword 'TTYPE317' in a: 'S_OUTLIR' E Extra keyword 'TTYPE318' in a: 'S_PTHLOS' E Extra keyword 'TTYPE319' in a: 'S_PERSIS' E Extra keyword 'TTYPE32' in a: 'OBSERVTN' E Extra keyword 'TTYPE320' in a: 'S_PHOTOM' E Extra keyword 'TTYPE321' in a: 'S_RAMP' E Extra keyword 'TTYPE322' in a: 'S_REFPIX' E Extra keyword 'TTYPE323' in a: 'S_RESAMP' E Extra keyword 'TTYPE324' in a: 'S_RESET' E Extra keyword 'TTYPE325' in a: 'S_RSCD' E Extra keyword 'TTYPE326' in a: 'S_SATURA' E Extra keyword 'TTYPE327' in a: 'S_SKYMAT' E Extra keyword 'TTYPE328' in a: 'S_SRCCAT' E Extra keyword 'TTYPE329' in a: 'S_SRCTYP' E Extra keyword 'TTYPE33' in a: 'VISIT' E Extra keyword 'TTYPE330' in a: 'S_PSFSTK' E Extra keyword 'TTYPE331' in a: 'S_STRAY' E Extra keyword 'TTYPE332' in a: 'S_SUPERB' E Extra keyword 'TTYPE333' in a: 'S_TSPHOT' E Extra keyword 'TTYPE334' in a: 'S_TWKREG' E Extra keyword 'TTYPE335' in a: 'S_WAVCOR' E Extra keyword 'TTYPE336' in a: 'S_WFSCOM' E Extra keyword 'TTYPE337' in a: 'S_WHTLIT' E Extra keyword 'TTYPE338' in a: 'BKGLEVEL' E Extra keyword 'TTYPE339' in a: 'BKGSUB' E Extra keyword 'TTYPE34' in a: 'VISITGRP' E Extra keyword 'TTYPE340' in a: 'BUNIT' E Extra keyword 'TTYPE341' in a: 'PHOTMJSR' E Extra keyword 'TTYPE342' in a: 'PHOTUJA2' E Extra keyword 'TTYPE343' in a: 'PIXAR_SR' E Extra keyword 'TTYPE344' in a: 'PIXAR_A2' E Extra keyword 'TTYPE345' in a: 'RADESYS' E Extra keyword 'TTYPE346' in a: 'RA_V1' E Extra keyword 'TTYPE347' in a: 'DEC_V1' E Extra keyword 'TTYPE348' in a: 'PA_V3' E Extra keyword 'TTYPE349' in a: 'WCSAXES' E Extra keyword 'TTYPE35' in a: 'SEQ_ID' E Extra keyword 'TTYPE350' in a: 'CRPIX1' E Extra keyword 'TTYPE351' in a: 'CRPIX2' E Extra keyword 'TTYPE352' in a: 'CRPIX3' E Extra keyword 'TTYPE353' in a: 'CRVAL1' E Extra keyword 'TTYPE354' in a: 'CRVAL2' E Extra keyword 'TTYPE355' in a: 'CRVAL3' E Extra keyword 'TTYPE356' in a: 'CTYPE1' E Extra keyword 'TTYPE357' in a: 'CTYPE2' E Extra keyword 'TTYPE358' in a: 'CTYPE3' E Extra keyword 'TTYPE359' in a: 'CUNIT1' E Extra keyword 'TTYPE36' in a: 'ACT_ID' E Extra keyword 'TTYPE360' in a: 'CUNIT2' E Extra keyword 'TTYPE361' in a: 'CUNIT3' E Extra keyword 'TTYPE362' in a: 'CDELT1' E Extra keyword 'TTYPE363' in a: 'CDELT2' E Extra keyword 'TTYPE364' in a: 'CDELT3' E Extra keyword 'TTYPE365' in a: 'PC1_1' E Extra keyword 'TTYPE366' in a: 'PC1_2' E Extra keyword 'TTYPE367' in a: 'PC1_3' E Extra keyword 'TTYPE368' in a: 'PC2_1' E Extra keyword 'TTYPE369' in a: 'PC2_2' E Extra keyword 'TTYPE37' in a: 'EXPOSURE' E Extra keyword 'TTYPE370' in a: 'PC2_3' E Extra keyword 'TTYPE371' in a: 'PC3_1' E Extra keyword 'TTYPE372' in a: 'PC3_2' E Extra keyword 'TTYPE373' in a: 'PC3_3' E Extra keyword 'TTYPE374' in a: 'CD1_1' E Extra keyword 'TTYPE375' in a: 'CD1_2' E Extra keyword 'TTYPE376' in a: 'CD2_1' E Extra keyword 'TTYPE377' in a: 'CD2_2' E Extra keyword 'TTYPE378' in a: 'S_REGION' E Extra keyword 'TTYPE379' in a: 'WAVSTART' E Extra keyword 'TTYPE38' in a: 'BKGDTARG' E Extra keyword 'TTYPE380' in a: 'WAVEND' E Extra keyword 'TTYPE381' in a: 'DISPAXIS' E Extra keyword 'TTYPE382' in a: 'SPORDER' E Extra keyword 'TTYPE383' in a: 'V2_REF' E Extra keyword 'TTYPE384' in a: 'V3_REF' E Extra keyword 'TTYPE385' in a: 'VPARITY' E Extra keyword 'TTYPE386' in a: 'V3I_YANG' E Extra keyword 'TTYPE387' in a: 'RA_REF' E Extra keyword 'TTYPE388' in a: 'DEC_REF' E Extra keyword 'TTYPE389' in a: 'ROLL_REF' E Extra keyword 'TTYPE39' in a: 'TEMPLATE' E Extra keyword 'TTYPE4' in a: 'FILENAME' E Extra keyword 'TTYPE40' in a: 'OBSLABEL' E Extra keyword 'TTYPE41' in a: 'ENG_QUAL' E Extra keyword 'TTYPE42' in a: 'ENGQLPTG' E Extra keyword 'TTYPE43' in a: 'VISITYPE' E Extra keyword 'TTYPE44' in a: 'VSTSTART' E Extra keyword 'TTYPE45' in a: 'VISITSTA' E Extra keyword 'TTYPE46' in a: 'NEXPOSUR' E Extra keyword 'TTYPE47' in a: 'INTARGET' E Extra keyword 'TTYPE48' in a: 'TARGOOPP' E Extra keyword 'TTYPE49' in a: 'TSOVISIT' E Extra keyword 'TTYPE5' in a: 'FILETYPE' E Extra keyword 'TTYPE50' in a: 'EXP_ONLY' E Extra keyword 'TTYPE51' in a: 'TARGPROP' E Extra keyword 'TTYPE52' in a: 'TARGNAME' E Extra keyword 'TTYPE53' in a: 'TARGTYPE' E Extra keyword 'TTYPE54' in a: 'TARG_RA' E Extra keyword 'TTYPE55' in a: 'TARG_DEC' E Extra keyword 'TTYPE56' in a: 'TARGURA' E Extra keyword 'TTYPE57' in a: 'TARGUDEC' E Extra keyword 'TTYPE58' in a: 'MU_RA' E Extra keyword 'TTYPE59' in a: 'MU_DEC' E Extra keyword 'TTYPE6' in a: 'SDP_VER' E Extra keyword 'TTYPE60' in a: 'MU_EPOCH' E Extra keyword 'TTYPE61' in a: 'PROP_RA' E Extra keyword 'TTYPE62' in a: 'PROP_DEC' E Extra keyword 'TTYPE63' in a: 'SRCTYAPT' E Extra keyword 'TTYPE64' in a: 'INSTRUME' E Extra keyword 'TTYPE65' in a: 'DETECTOR' E Extra keyword 'TTYPE66' in a: 'MODULE' E Extra keyword 'TTYPE67' in a: 'CHANNEL' E Extra keyword 'TTYPE68' in a: 'FILTER' E Extra keyword 'TTYPE69' in a: 'PUPIL' E Extra keyword 'TTYPE7' in a: 'PRD_VER' E Extra keyword 'TTYPE70' in a: 'PILIN' E Extra keyword 'TTYPE71' in a: 'GRATING' E Extra keyword 'TTYPE72' in a: 'BAND' E Extra keyword 'TTYPE73' in a: 'FXD_SLIT' E Extra keyword 'TTYPE74' in a: 'FOCUSPOS' E Extra keyword 'TTYPE75' in a: 'PREIMAGE' E Extra keyword 'TTYPE76' in a: 'CCCSTATE' E Extra keyword 'TTYPE77' in a: 'CORONMSK' E Extra keyword 'TTYPE78' in a: 'MSASTATE' E Extra keyword 'TTYPE79' in a: 'MSAMETFL' E Extra keyword 'TTYPE8' in a: 'CAL_VER' E Extra keyword 'TTYPE80' in a: 'MSAMETID' E Extra keyword 'TTYPE81' in a: 'MSACONID' E Extra keyword 'TTYPE82' in a: 'LAMP' E Extra keyword 'TTYPE83' in a: 'OPMODE' E Extra keyword 'TTYPE84' in a: 'GWA_XTIL' E Extra keyword 'TTYPE85' in a: 'GWA_YTIL' E Extra keyword 'TTYPE86' in a: 'GWA_XP_V' E Extra keyword 'TTYPE87' in a: 'GWA_YP_V' E Extra keyword 'TTYPE88' in a: 'GWA_PXAV' E Extra keyword 'TTYPE89' in a: 'GWA_PYAV' E Extra keyword 'TTYPE9' in a: 'CAL_VCS' E Extra keyword 'TTYPE90' in a: 'GWA_TILT' E Extra keyword 'TTYPE91' in a: 'FWCPOS' E Extra keyword 'TTYPE92' in a: 'PWCPOS' E Extra keyword 'TTYPE93' in a: 'EXPCOUNT' E Extra keyword 'TTYPE94' in a: 'EXPRIPAR' E Extra keyword 'TTYPE95' in a: 'EXP_TYPE' E Extra keyword 'TTYPE96' in a: 'EXPSTART' E Extra keyword 'TTYPE97' in a: 'MJD-BEG' E Extra keyword 'TTYPE98' in a: 'EXPMID' E Extra keyword 'TTYPE99' in a: 'MJD-AVG' E Keyword BITPIX has different values: E a> 8 E b> -32 E Keyword EXTNAME has different values: E a> HDRTAB E b> WHT E Keyword NAXIS2 has different values: E a> 2 E b> 158 E Keyword NAXIS2 has different comments: E a> length of dimension 2 E Keyword PCOUNT has different comments: E a> number of group parameters E ? ------ E b> number of parameters E Keyword XTENSION has different values: E a> BINTABLE E b> IMAGE E Keyword XTENSION has different comments: E a> binary table extension E b> Image extension E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff627879970>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:70: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 _______________________ test_nircam_image_stages12[jump] _______________________ run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...p.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'jump' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_image_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_jump.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_jump.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 3 (GROUPDQ, 1): E E Data contains differences: E Data differs at [1091, 19, 2, 1]: E a> 0 E b> 4 E Data differs at [1092, 19, 2, 1]: E a> 0 E b> 4 E Data differs at [1999, 19, 2, 1]: E a> 0 E b> 4 E Data differs at [1090, 20, 2, 1]: E a> 0 E b> 4 E Data differs at [1998, 20, 2, 1]: E a> 0 E b> 4 E Data differs at [2000, 20, 2, 1]: E a> 0 E b> 4 E Data differs at [1091, 21, 2, 1]: E a> 0 E b> 4 E Data differs at [1999, 21, 2, 1]: E a> 0 E b> 4 E Data differs at [1092, 22, 2, 1]: E a> 0 E b> 4 E Data differs at [124, 24, 2, 1]: E a> 0 E b> 4 E ... E 6746 different pixels found (0.02% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6298b7610>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:100: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 _______________________ test_nircam_image_stages12[rate] _______________________ run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...e.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'rate' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_image_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_rate.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 0.59331167 E b> 0.5123616 E Data differs at [974, 5]: E a> 0.26042837 E b> 0.26019776 E Data differs at [975, 5]: E a> 0.6749324 E b> 0.35884577 E Data differs at [1557, 5]: E a> 0.33364332 E b> 0.33779904 E Data differs at [1558, 5]: E a> 0.23502852 E b> 0.23446178 E Data differs at [1559, 5]: E a> 0.5274891 E b> 0.52741677 E Data differs at [1648, 5]: E a> 0.40663427 E b> 0.40685257 E Data differs at [1649, 5]: E a> 0.4115209 E b> 0.41310066 E Data differs at [1650, 5]: E a> 0.41427472 E b> 0.41430134 E Data differs at [974, 6]: E a> 0.53941905 E b> 0.5269087 E ... E 8589 different pixels found (0.20% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [510, 5]: E a> 0.10418983 E b> 0.10533949 E Data differs at [825, 5]: E a> 0.07990681 E b> 0.06952212 E Data differs at [826, 5]: E a> 0.2582703 E b> 0.20624045 E Data differs at [973, 5]: E a> 0.057245895 E b> 0.09001816 E Data differs at [974, 5]: E a> 0.08661551 E b> 0.08512432 E Data differs at [975, 5]: E a> 0.053677496 E b> 0.086430885 E Data differs at [1557, 5]: E a> 0.072490275 E b> 0.067940824 E Data differs at [1558, 5]: E a> 0.07524172 E b> 0.07166626 E Data differs at [1559, 5]: E a> 0.08139411 E b> 0.079832405 E Data differs at [1648, 5]: E a> 0.075554565 E b> 0.07508268 E ... E 16290 different pixels found (0.39% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [974, 4]: E a> 2148007939 E ? - E b> 2148007943 E ? + E Data differs at [410, 5]: E a> 1049603 E ? ^ E b> 1049607 E ? ^ E Data differs at [973, 5]: E a> 0 E b> 4 E Data differs at [975, 5]: E a> 0 E b> 4 E Data differs at [974, 6]: E a> 0 E b> 4 E Data differs at [1967, 6]: E a> 1049603 E ? ^ E b> 1049607 E ? ^ E Data differs at [1989, 6]: E a> 0 E b> 4 E Data differs at [351, 7]: E a> 1049603 E ? ^ E b> 1049607 E ? ^ E Data differs at [1792, 7]: E a> 0 E b> 4 E Data differs at [1988, 7]: E a> 0 E b> 4 E ... E 6228 different pixels found (0.15% different). E E Extension HDU 4 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [510, 5]: E a> 0.003220742 E b> 0.0034616315 E Data differs at [825, 5]: E a> 0.0037485342 E b> 0.0021967604 E Data differs at [826, 5]: E a> 0.059899975 E b> 0.03573155 E Data differs at [973, 5]: E a> 0.0017368946 E b> 0.0019424778 E Data differs at [974, 5]: E a> 0.0014752131 E b> 0.0012191167 E Data differs at [975, 5]: E a> 0.0014157583 E b> 0.0016082363 E Data differs at [1557, 5]: E a> 0.0014082018 E b> 0.0007693181 E Data differs at [1558, 5]: E a> 0.0014686888 E b> 0.0009434247 E Data differs at [1559, 5]: E a> 0.0028980877 E b> 0.0026462993 E Data differs at [1648, 5]: E a> 0.0017507401 E b> 0.0016796568 E ... E 16256 different pixels found (0.39% different). E E Extension HDU 5 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 0.0015401981 E b> 0.0061607915 E Data differs at [975, 5]: E a> 0.0014655153 E b> 0.0058620614 E Data differs at [974, 6]: E a> 0.0035577808 E b> 0.014231123 E Data differs at [1989, 6]: E a> 0.0014485614 E b> 0.0023176984 E Data differs at [1792, 7]: E a> 0.0017518823 E b> 0.004671686 E Data differs at [1988, 7]: E a> 0.0017409994 E b> 0.0027855989 E Data differs at [1990, 7]: E a> 0.0013844654 E b> 0.0022151445 E Data differs at [68, 8]: E a> 0.0022785563 E b> 0.009114225 E Data differs at [72, 8]: E a> 0.0026900165 E b> 0.0043040263 E Data differs at [539, 8]: E a> 0.001805673 E b> 0.004815128 E ... E 4186 different pixels found (0.10% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff62791eb20>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:100: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 ____________________ test_nircam_image_stages12[flat_field] ____________________ run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'flat_field' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_image_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_flat_field.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_flat_field.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 0.53642535 E b> 0.46323672 E Data differs at [974, 5]: E a> 0.2309414 E b> 0.2307369 E Data differs at [975, 5]: E a> 0.56959337 E b> 0.3028395 E Data differs at [1557, 5]: E a> 0.28937265 E b> 0.29297695 E Data differs at [1558, 5]: E a> 0.19995241 E b> 0.19947025 E Data differs at [1559, 5]: E a> 0.48059523 E ? -- E b> 0.4805293 E ? + E Data differs at [1648, 5]: E a> 0.3537578 E b> 0.35394773 E Data differs at [1649, 5]: E a> 0.3662209 E b> 0.36762676 E Data differs at [1650, 5]: E a> 0.3592237 E b> 0.35924676 E Data differs at [974, 6]: E a> 0.5304327 E b> 0.5181308 E ... E 8589 different pixels found (0.20% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [510, 5]: E a> 0.08226648 E b> 0.08317346 E Data differs at [825, 5]: E a> 0.06715884 E b> 0.058443323 E Data differs at [826, 5]: E a> 0.26741248 E b> 0.21757992 E Data differs at [973, 5]: E a> 0.051837027 E b> 0.08142515 E Data differs at [974, 5]: E a> 0.07681828 E b> 0.075496085 E Data differs at [975, 5]: E a> 0.04539584 E b> 0.072958186 E Data differs at [1557, 5]: E a> 0.062890016 E b> 0.05894595 E Data differs at [1558, 5]: E a> 0.06402094 E b> 0.060979463 E Data differs at [1559, 5]: E a> 0.074203275 E b> 0.07278127 E Data differs at [1648, 5]: E a> 0.065756194 E b> 0.06534586 E ... E 16290 different pixels found (0.39% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [974, 4]: E a> 2148007939 E ? - E b> 2148007943 E ? + E Data differs at [410, 5]: E a> 1311747 E b> 1311751 E Data differs at [973, 5]: E a> 0 E b> 4 E Data differs at [975, 5]: E a> 0 E b> 4 E Data differs at [974, 6]: E a> 0 E b> 4 E Data differs at [1967, 6]: E a> 1311747 E b> 1311751 E Data differs at [1989, 6]: E a> 0 E b> 4 E Data differs at [351, 7]: E a> 1311747 E b> 1311751 E Data differs at [1792, 7]: E a> 0 E b> 4 E Data differs at [1988, 7]: E a> 0 E b> 4 E ... E 6228 different pixels found (0.15% different). E E Extension HDU 4 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [510, 5]: E a> 0.0020062034 E b> 0.0021562537 E Data differs at [825, 5]: E a> 0.002644376 E b> 0.0015496884 E Data differs at [826, 5]: E a> 0.059899975 E b> 0.03573155 E Data differs at [973, 5]: E a> 0.0014197971 E b> 0.0015878478 E Data differs at [974, 5]: E a> 0.0011600635 E b> 0.000958677 E Data differs at [975, 5]: E a> 0.0010083201 E b> 0.0011454053 E Data differs at [1557, 5]: E a> 0.0010592903 E b> 0.0005787034 E Data differs at [1558, 5]: E a> 0.0010630211 E b> 0.00068284065 E Data differs at [1559, 5]: E a> 0.002405711 E b> 0.0021967008 E Data differs at [1648, 5]: E a> 0.0013250302 E b> 0.0012712316 E ... E 16256 different pixels found (0.39% different). E E Extension HDU 5 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 0.0012590106 E b> 0.0050360416 E Data differs at [975, 5]: E a> 0.0010437577 E b> 0.0041750306 E Data differs at [974, 6]: E a> 0.0034402276 E b> 0.01376091 E Data differs at [1989, 6]: E a> 0.0014225811 E b> 0.00227613 E Data differs at [1792, 7]: E a> 0.0016252083 E b> 0.0043338886 E Data differs at [1988, 7]: E a> 0.0017263241 E b> 0.0027621184 E Data differs at [1990, 7]: E a> 0.0013285009 E b> 0.0021256013 E Data differs at [68, 8]: E a> 0.0017857525 E b> 0.00714301 E Data differs at [72, 8]: E a> 0.002006081 E b> 0.0032097294 E Data differs at [539, 8]: E a> 0.0014467038 E b> 0.0038578769 E ... E 4186 different pixels found (0.10% different). E E Extension HDU 6 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 8.269414e-06 E b> 6.166832e-06 E Data differs at [975, 5]: E a> 8.704588e-06 E b> 2.4606131e-06 E Data differs at [974, 6]: E a> 8.834569e-06 E b> 8.429534e-06 E Data differs at [1989, 6]: E a> 8.166324e-06 E b> 4.962259e-06 E Data differs at [1792, 7]: E a> 2.7812239e-05 E b> 2.6344867e-06 E Data differs at [1988, 7]: E a> 8.323721e-06 E b> 8.209953e-06 E Data differs at [1990, 7]: E a> 1.0036074e-05 E b> 7.1044137e-06 E Data differs at [68, 8]: E a> 2.06629e-05 E b> 3.7502768e-06 E Data differs at [72, 8]: E a> 9.618403e-06 E b> 5.117893e-06 E Data differs at [539, 8]: E a> 1.974134e-05 E b> 3.4213726e-06 E ... E 4601 different pixels found (0.11% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff629c78ca0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:100: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 _______________________ test_nircam_image_stages12[cal] ________________________ run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...al.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'cal' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_image_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 0.28533456 E b> 0.24640417 E Data differs at [974, 5]: E a> 0.12284199 E b> 0.12273321 E Data differs at [975, 5]: E a> 0.30297723 E b> 0.16108592 E Data differs at [1557, 5]: E a> 0.15392266 E b> 0.15583985 E Data differs at [1558, 5]: E a> 0.10635838 E b> 0.10610191 E Data differs at [1559, 5]: E a> 0.25563747 E b> 0.25560242 E Data differs at [1648, 5]: E a> 0.1881703 E b> 0.18827133 E Data differs at [1649, 5]: E a> 0.19479966 E b> 0.19554746 E Data differs at [1650, 5]: E a> 0.19107771 E b> 0.19108999 E Data differs at [974, 6]: E a> 0.28214696 E b> 0.27560332 E ... E 8587 different pixels found (0.20% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [510, 5]: E a> 0.04375906 E b> 0.0442415 E Data differs at [825, 5]: E a> 0.035723027 E b> 0.031087082 E Data differs at [826, 5]: E a> 0.14224164 E b> 0.11573478 E Data differs at [973, 5]: E a> 0.027573071 E b> 0.043311544 E Data differs at [974, 5]: E a> 0.040861063 E b> 0.04015776 E Data differs at [975, 5]: E a> 0.024146885 E b> 0.038807806 E Data differs at [1557, 5]: E a> 0.03345236 E b> 0.03135444 E Data differs at [1558, 5]: E a> 0.034053918 E b> 0.032436103 E Data differs at [1559, 5]: E a> 0.03947009 E b> 0.0387137 E Data differs at [1648, 5]: E a> 0.034976933 E b> 0.03475867 E ... E 16290 different pixels found (0.39% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [974, 4]: E a> 2148007939 E ? - E b> 2148007943 E ? + E Data differs at [410, 5]: E a> 1311747 E b> 1311751 E Data differs at [973, 5]: E a> 0 E b> 4 E Data differs at [975, 5]: E a> 0 E b> 4 E Data differs at [974, 6]: E a> 0 E b> 4 E Data differs at [1967, 6]: E a> 1311747 E b> 1311751 E Data differs at [1989, 6]: E a> 0 E b> 4 E Data differs at [351, 7]: E a> 1311747 E b> 1311751 E Data differs at [1792, 7]: E a> 0 E b> 4 E Data differs at [1988, 7]: E a> 0 E b> 4 E ... E 6228 different pixels found (0.15% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [510, 5]: E a> 0.0005676297 E b> 0.0006100845 E Data differs at [825, 5]: E a> 0.0007481925 E b> 0.0004384646 E Data differs at [826, 5]: E a> 0.016947934 E b> 0.010109787 E Data differs at [973, 5]: E a> 0.00040171348 E b> 0.0004492613 E Data differs at [974, 5]: E a> 0.0003282252 E b> 0.00027124543 E Data differs at [975, 5]: E a> 0.00028529135 E b> 0.00032407785 E Data differs at [1557, 5]: E a> 0.00029971267 E b> 0.00016373675 E Data differs at [1558, 5]: E a> 0.0003007683 E b> 0.00019320106 E Data differs at [1559, 5]: E a> 0.00068066525 E b> 0.0006215285 E Data differs at [1648, 5]: E a> 0.0003749004 E b> 0.0003596788 E ... E 16252 different pixels found (0.39% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 0.00035622102 E b> 0.0014248838 E Data differs at [975, 5]: E a> 0.00029531794 E b> 0.0011812717 E Data differs at [974, 6]: E a> 0.0009733686 E b> 0.0038934743 E Data differs at [1989, 6]: E a> 0.0004025012 E b> 0.000644002 E Data differs at [1792, 7]: E a> 0.000459832 E b> 0.0012262185 E Data differs at [1988, 7]: E a> 0.0004884414 E b> 0.0007815062 E Data differs at [1990, 7]: E a> 0.0003758824 E b> 0.0006014118 E Data differs at [68, 8]: E a> 0.0005052559 E b> 0.0020210235 E Data differs at [72, 8]: E a> 0.00056759507 E b> 0.000908152 E Data differs at [539, 8]: E a> 0.0004093264 E b> 0.0010915371 E ... E 4186 different pixels found (0.10% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 2.3397254e-06 E b> 1.7448266e-06 E Data differs at [975, 5]: E a> 2.4628523e-06 E b> 6.9619915e-07 E Data differs at [974, 6]: E a> 2.4996286e-06 E b> 2.3850293e-06 E Data differs at [1989, 6]: E a> 2.3105572e-06 E b> 1.404008e-06 E Data differs at [1792, 7]: E a> 7.869118e-06 E b> 7.4539446e-07 E Data differs at [1990, 7]: E a> 2.8395793e-06 E b> 2.0101033e-06 E Data differs at [68, 8]: E a> 5.8463042e-06 E b> 1.061093e-06 E Data differs at [72, 8]: E a> 2.7214046e-06 E b> 1.4480427e-06 E Data differs at [539, 8]: E a> 5.5855603e-06 E b> 9.680338e-07 E Data differs at [1791, 8]: E a> 7.4935233e-06 E b> 1.0853282e-06 E ... E 4098 different pixels found (0.10% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff629fea430>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:100: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 _______________________ test_nircam_image_stages12[i2d] ________________________ run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'i2d' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_image_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Files contain different numbers of HDUs: E a: 5 E b: 9 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 165 E b: 167 E Extra keyword 'PIXFRAC' in b: 1.0 E Extra keyword 'PXSCLRT' in b: 1.0 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 45 E b: 38 E Extra keyword 'DEC_REF' in a: 11.99872146011667 E Extra keyword 'RA_REF' in a: 22.02351078132195 E Extra keyword 'ROLL_REF' in a: 0.005076934167039675 E Extra keyword 'V2_REF' in a: 86.039011 E Extra keyword 'V3I_YANG' in a: -0.07385127 E Extra keyword 'V3_REF' in a: -493.385704 E Extra keyword 'VPARITY' in a: -1 E E Data contains differences: E Data differs at [1575, 4]: E a> 0.15892696 E b> 0.15949532 E Data differs at [1576, 4]: E a> 0.12995401 E b> 0.13077584 E Data differs at [1577, 4]: E a> 0.18045287 E b> 0.18030629 E Data differs at [1578, 4]: E a> 0.2431661 E b> 0.24314773 E Data differs at [1667, 4]: E a> 0.20382182 E ? ^ ^ E b> 0.20382786 E ? ^ ^ E Data differs at [1668, 4]: E a> 0.18906853 E b> 0.18925717 E Data differs at [1669, 4]: E a> 0.19429794 E b> 0.19494659 E Data differs at [1670, 4]: E a> 0.1759614 E b> 0.17597069 E Data differs at [2014, 4]: E a> 0.18720526 E b> 0.18710816 E Data differs at [2015, 4]: E a> 0.19701491 E b> 0.19675109 E ... E 22053 different pixels found (0.51% different). E E Extension HDU 2: E Extension names differ: E a: CON E b: ERR E E Headers contain differences: E Headers have different number of cards: E a: 9 E b: 10 E Extra keyword 'BUNIT' in b: 'MJy/sr' E Keyword BITPIX has different values: E a> 32 E b> -32 E ? + E Keyword EXTNAME has different values: E a> CON E b> ERR E E Data contains differences: E Data differs at [1, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [2, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [3, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [4, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [5, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [6, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [7, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [8, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [9, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [10, 1]: E (int32) a> 0 E (float32) b> nan E ... E 4291045 different pixels found (100.00% different). E E Extension HDU 3: E Extension names differ: E a: WHT E b: CON E E Headers contain differences: E Keyword BITPIX has different values: E a> -32 E ? - E b> 32 E Keyword EXTNAME has different values: E a> WHT E b> CON E E Data contains differences: E Data differs at [1692, 3]: E (float32) a> 0.29514724 E (int32) b> 1 E Data differs at [1693, 3]: E (float32) a> 2.711692 E (int32) b> 1 E Data differs at [1694, 3]: E (float32) a> 5.3501816 E (int32) b> 1 E Data differs at [1695, 3]: E (float32) a> 8.479959 E (int32) b> 1 E Data differs at [1696, 3]: E (float32) a> 12.819407 E (int32) b> 1 E Data differs at [1697, 3]: E (float32) a> 16.052992 E (int32) b> 1 E Data differs at [1698, 3]: E (float32) a> 18.66256 E (int32) b> 1 E Data differs at [1699, 3]: E (float32) a> 19.756235 E (int32) b> 1 E Data differs at [1700, 3]: E (float32) a> 21.325914 E (int32) b> 1 E Data differs at [1701, 3]: E (float32) a> 26.470516 E (int32) b> 1 E ... E 4184184 different pixels found (97.51% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff627984f70>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:100: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120211200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120211200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120211200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120211200 _________________________ test_nircam_image_stage3_i2d _________________________ run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_stage3_i2d(run_image3pipeline, rtdata_module, fitsdiff_default_kwargs): """Test that resampled i2d looks good for NIRCam imaging""" rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" rtdata.output = "jw42424-o002_t001_nircam_clear-f444w_i2d.fits" rtdata.get_truth("truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits") fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_t001_nircam_clear-f444w_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424-o002_t001_nircam_clear-f444w_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Files contain different numbers of HDUs: E a: 6 E b: 10 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 175 E b: 177 E Extra keyword 'PIXFRAC' in b: 1.0 E Extra keyword 'PXSCLRT' in b: 1.0 E Keyword BKGLEVEL has different values: E a> 0.1820854827084115 E b> 0.1817218501964128 E Keyword EFFEXPTM has different values: E a> 150.31478 E b> 450.94434 E Keyword TEXPTIME has different values: E a> 150.31478 E b> 450.94434 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 45 E b: 38 E Extra keyword 'DEC_REF' in a: 12.00106914964813 E Extra keyword 'RA_REF' in a: 22.00070633014625 E Extra keyword 'ROLL_REF' in a: 0.005076934167039675 E Extra keyword 'V2_REF' in a: 86.039011 E Extra keyword 'V3I_YANG' in a: -0.07385127 E Extra keyword 'V3_REF' in a: -493.385704 E Extra keyword 'VPARITY' in a: -1 E Keyword S_REGION has different values: E a> POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 E ? ^ ^ ^ E b> POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 E ? ^ ^ ^ E E Data contains differences: E Data differs at [1565, 4]: E a> 0.0065931263 E b> 0.0070355684 E Data differs at [1566, 4]: E a> -0.034149464 E b> -0.033770543 E Data differs at [1567, 4]: E a> 0.012135209 E b> 0.012490119 E Data differs at [1568, 4]: E a> 0.032276906 E b> 0.03263955 E Data differs at [1569, 4]: E a> 0.006074779 E b> 0.006440426 E Data differs at [1570, 4]: E a> -0.0029260265 E b> -0.0025622686 E Data differs at [1571, 4]: E a> 0.030152451 E b> 0.03051435 E Data differs at [1572, 4]: E a> 0.062396176 E b> 0.06275892 E Data differs at [1573, 4]: E a> 0.039129436 E b> 0.039494347 E Data differs at [1574, 4]: E a> 0.0062194387 E b> 0.006584014 E ... E 7548830 different pixels found (63.17% different). E E Extension HDU 2: E Extension names differ: E a: CON E b: ERR E E Headers contain differences: E Headers have different number of cards: E a: 9 E b: 10 E Extra keyword 'BUNIT' in b: 'MJy/sr' E Keyword BITPIX has different values: E a> 32 E b> -32 E ? + E Keyword EXTNAME has different values: E a> CON E b> ERR E E Data contains differences: E Data differs at [1, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [2, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [3, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [4, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [5, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [6, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [7, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [8, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [9, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [10, 1]: E (int32) a> 0 E (float32) b> nan E ... E 11950380 different pixels found (100.00% different). E E Extension HDU 3: E Extension names differ: E a: WHT E b: CON E E Headers contain differences: E Keyword BITPIX has different values: E a> -32 E ? - E b> 32 E Keyword EXTNAME has different values: E a> WHT E b> CON E E Data contains differences: E Data differs at [1565, 4]: E (float32) a> 4.9420524 E (int32) b> 1 E Data differs at [1566, 4]: E (float32) a> 15.42143 E (int32) b> 1 E Data differs at [1567, 4]: E (float32) a> 25.41092 E (int32) b> 1 E Data differs at [1568, 4]: E (float32) a> 34.322113 E (int32) b> 1 E Data differs at [1569, 4]: E (float32) a> 45.11565 E (int32) b> 1 E Data differs at [1570, 4]: E (float32) a> 52.83835 E (int32) b> 1 E Data differs at [1571, 4]: E (float32) a> 60.860703 E (int32) b> 1 E Data differs at [1572, 4]: E (float32) a> 78.98953 E (int32) b> 1 E Data differs at [1573, 4]: E (float32) a> 90.78503 E (int32) b> 1 E Data differs at [1574, 4]: E (float32) a> 95.463806 E (int32) b> 1 E ... E 10277087 different pixels found (86.00% different). E E Extension HDU 4: E Extension types differ: E a: BINTABLE E b: IMAGE E Extension names differ: E a: HDRTAB E b: WHT E E Headers contain differences: E Headers have different number of cards: E a: 788 E b: 9 E Extra keyword 'TFIELDS' in a: 389 E Extra keyword 'TTYPE1' in a: 'DATE' E Extra keyword 'TTYPE10' in a: 'DATAMODL' E Extra keyword 'TTYPE100' in a: 'EXPEND' E Extra keyword 'TTYPE101' in a: 'MJD-END' E Extra keyword 'TTYPE102' in a: 'TDB-BEG' E Extra keyword 'TTYPE103' in a: 'TDB-MID' E Extra keyword 'TTYPE104' in a: 'TDB-END' E Extra keyword 'TTYPE105' in a: 'READPATT' E Extra keyword 'TTYPE106' in a: 'EXSEGNUM' E Extra keyword 'TTYPE107' in a: 'EXSEGTOT' E Extra keyword 'TTYPE108' in a: 'NOUTPUTS' E Extra keyword 'TTYPE109' in a: 'NINTS' E Extra keyword 'TTYPE11' in a: 'TELESCOP' E Extra keyword 'TTYPE110' in a: 'INTSTART' E Extra keyword 'TTYPE111' in a: 'INTEND' E Extra keyword 'TTYPE112' in a: 'NGROUPS' E Extra keyword 'TTYPE113' in a: 'NFRAMES' E Extra keyword 'TTYPE114' in a: 'MIRNGRPS' E Extra keyword 'TTYPE115' in a: 'MIRNFRMS' E Extra keyword 'TTYPE116' in a: 'FRMDIVSR' E Extra keyword 'TTYPE117' in a: 'GROUPGAP' E Extra keyword 'TTYPE118' in a: 'DRPFRMS1' E Extra keyword 'TTYPE119' in a: 'DRPFRMS3' E Extra keyword 'TTYPE12' in a: 'HGA_MOVE' E Extra keyword 'TTYPE120' in a: 'NSAMPLES' E Extra keyword 'TTYPE121' in a: 'TSAMPLE' E Extra keyword 'TTYPE122' in a: 'TFRAME' E Extra keyword 'TTYPE123' in a: 'TGROUP' E Extra keyword 'TTYPE124' in a: 'EFFINTTM' E Extra keyword 'TTYPE125' in a: 'EFFEXPTM' E Extra keyword 'TTYPE126' in a: 'XPOSURE' E Extra keyword 'TTYPE127' in a: 'DURATION' E Extra keyword 'TTYPE128' in a: 'TELAPSE' E Extra keyword 'TTYPE129' in a: 'NRSTSTRT' E Extra keyword 'TTYPE13' in a: 'HGA_STRT' E Extra keyword 'TTYPE130' in a: 'NRESETS' E Extra keyword 'TTYPE131' in a: 'ZEROFRAM' E Extra keyword 'TTYPE132' in a: 'DATAPROB' E Extra keyword 'TTYPE133' in a: 'SCA_NUM' E Extra keyword 'TTYPE134' in a: 'DATAMODE' E Extra keyword 'TTYPE135' in a: 'NRS_NORM' E Extra keyword 'TTYPE136' in a: 'NRS_REF' E Extra keyword 'TTYPE137' in a: 'SCTARATE' E Extra keyword 'TTYPE138' in a: 'GAINFACT' E Extra keyword 'TTYPE139' in a: 'IS_IMPRT' E Extra keyword 'TTYPE14' in a: 'HGA_STOP' E Extra keyword 'TTYPE140' in a: 'IS_PSF' E Extra keyword 'TTYPE141' in a: 'SELFREF' E Extra keyword 'TTYPE142' in a: 'SUBARRAY' E Extra keyword 'TTYPE143' in a: 'SUBSTRT1' E Extra keyword 'TTYPE144' in a: 'SUBSTRT2' E Extra keyword 'TTYPE145' in a: 'SUBSIZE1' E Extra keyword 'TTYPE146' in a: 'SUBSIZE2' E Extra keyword 'TTYPE147' in a: 'FASTAXIS' E Extra keyword 'TTYPE148' in a: 'SLOWAXIS' E Extra keyword 'TTYPE149' in a: 'DETXCOR' E Extra keyword 'TTYPE15' in a: 'PWFSEET' E Extra keyword 'TTYPE150' in a: 'DETYCOR' E Extra keyword 'TTYPE151' in a: 'DETXSIZ' E Extra keyword 'TTYPE152' in a: 'DETYSIZ' E Extra keyword 'TTYPE153' in a: 'PATTTYPE' E Extra keyword 'TTYPE154' in a: 'PRIDTYPE' E Extra keyword 'TTYPE155' in a: 'PRIDTPTS' E Extra keyword 'TTYPE156' in a: 'PATT_NUM' E Extra keyword 'TTYPE157' in a: 'PATTSTRT' E Extra keyword 'TTYPE158' in a: 'NUMDTHPT' E Extra keyword 'TTYPE159' in a: 'PATTNPTS' E Extra keyword 'TTYPE16' in a: 'NWFSEST' E Extra keyword 'TTYPE160' in a: 'PATTSIZE' E Extra keyword 'TTYPE161' in a: 'SMGRDPAT' E Extra keyword 'TTYPE162' in a: 'SUBPXPTS' E Extra keyword 'TTYPE163' in a: 'SUBPXPAT' E Extra keyword 'TTYPE164' in a: 'SPEC_NUM' E Extra keyword 'TTYPE165' in a: 'SPECNSTP' E Extra keyword 'TTYPE166' in a: 'SPECSTEP' E Extra keyword 'TTYPE167' in a: 'SPCOFFST' E Extra keyword 'TTYPE168' in a: 'SPAT_NUM' E Extra keyword 'TTYPE169' in a: 'SPATNSTP' E Extra keyword 'TTYPE17' in a: 'ASNPOOL' E Extra keyword 'TTYPE170' in a: 'SPATSTEP' E Extra keyword 'TTYPE171' in a: 'SPTOFFST' E Extra keyword 'TTYPE172' in a: 'XOFFSET' E Extra keyword 'TTYPE173' in a: 'YOFFSET' E Extra keyword 'TTYPE174' in a: 'REFFRAME' E Extra keyword 'TTYPE175' in a: 'EPH_TYPE' E Extra keyword 'TTYPE176' in a: 'EPH_TIME' E Extra keyword 'TTYPE177' in a: 'JWST_X' E Extra keyword 'TTYPE178' in a: 'JWST_Y' E Extra keyword 'TTYPE179' in a: 'JWST_Z' E Extra keyword 'TTYPE18' in a: 'ASNTABLE' E Extra keyword 'TTYPE180' in a: 'JWST_DX' E Extra keyword 'TTYPE181' in a: 'JWST_DY' E Extra keyword 'TTYPE182' in a: 'JWST_DZ' E Extra keyword 'TTYPE183' in a: 'APERNAME' E Extra keyword 'TTYPE184' in a: 'PPS_APER' E Extra keyword 'TTYPE185' in a: 'PA_APER' E Extra keyword 'TTYPE186' in a: 'VA_RA' E Extra keyword 'TTYPE187' in a: 'VA_DEC' E Extra keyword 'TTYPE188' in a: 'VA_SCALE' E Extra keyword 'TTYPE189' in a: 'BARTDELT' E Extra keyword 'TTYPE19' in a: 'TITLE' E Extra keyword 'TTYPE190' in a: 'BSTRTIME' E Extra keyword 'TTYPE191' in a: 'BENDTIME' E Extra keyword 'TTYPE192' in a: 'BMIDTIME' E Extra keyword 'TTYPE193' in a: 'HELIDELT' E Extra keyword 'TTYPE194' in a: 'HSTRTIME' E Extra keyword 'TTYPE195' in a: 'HENDTIME' E Extra keyword 'TTYPE196' in a: 'HMIDTIME' E Extra keyword 'TTYPE197' in a: 'FAM_LA1' E Extra keyword 'TTYPE198' in a: 'FASTEP1' E Extra keyword 'TTYPE199' in a: 'FAUNIT1' E Extra keyword 'TTYPE2' in a: 'ORIGIN' E Extra keyword 'TTYPE20' in a: 'PI_NAME' E Extra keyword 'TTYPE200' in a: 'FAPHASE1' E Extra keyword 'TTYPE201' in a: 'FA1VALUE' E Extra keyword 'TTYPE202' in a: 'FAM_LA2' E Extra keyword 'TTYPE203' in a: 'FASTEP2' E Extra keyword 'TTYPE204' in a: 'FAUNIT2' E Extra keyword 'TTYPE205' in a: 'FAPHASE2' E Extra keyword 'TTYPE206' in a: 'FA2VALUE' E Extra keyword 'TTYPE207' in a: 'FAM_LA3' E Extra keyword 'TTYPE208' in a: 'FASTEP3' E Extra keyword 'TTYPE209' in a: 'FAUNIT3' E Extra keyword 'TTYPE21' in a: 'CATEGORY' E Extra keyword 'TTYPE210' in a: 'FAPHASE3' E Extra keyword 'TTYPE211' in a: 'FA3VALUE' E Extra keyword 'TTYPE212' in a: 'RMA_POS' E Extra keyword 'TTYPE213' in a: 'FCSRLPOS' E Extra keyword 'TTYPE214' in a: 'GS_ORDER' E Extra keyword 'TTYPE215' in a: 'GSSTRTTM' E Extra keyword 'TTYPE216' in a: 'GSENDTIM' E Extra keyword 'TTYPE217' in a: 'GDSTARID' E Extra keyword 'TTYPE218' in a: 'GS_RA' E Extra keyword 'TTYPE219' in a: 'GS_DEC' E Extra keyword 'TTYPE22' in a: 'SUBCAT' E Extra keyword 'TTYPE220' in a: 'GS_URA' E Extra keyword 'TTYPE221' in a: 'GS_UDEC' E Extra keyword 'TTYPE222' in a: 'GS_MAG' E Extra keyword 'TTYPE223' in a: 'GS_UMAG' E Extra keyword 'TTYPE224' in a: 'PCS_MODE' E Extra keyword 'TTYPE225' in a: 'VISITEND' E Extra keyword 'TTYPE226' in a: 'GSACSTAT' E Extra keyword 'TTYPE227' in a: 'GSCENTX' E Extra keyword 'TTYPE228' in a: 'GSCENTY' E Extra keyword 'TTYPE229' in a: 'GS_EPOCH' E Extra keyword 'TTYPE23' in a: 'SCICAT' E Extra keyword 'TTYPE230' in a: 'GS_MURA' E Extra keyword 'TTYPE231' in a: 'GS_MUDEC' E Extra keyword 'TTYPE232' in a: 'GS_PARA' E Extra keyword 'TTYPE233' in a: 'CRDS_VER' E Extra keyword 'TTYPE234' in a: 'CRDS_CTX' E Extra keyword 'TTYPE235' in a: 'R_AREA' E Extra keyword 'TTYPE236' in a: 'R_MSAOPE' E Extra keyword 'TTYPE237' in a: 'R_BARSHA' E Extra keyword 'TTYPE238' in a: 'R_CAMERA' E Extra keyword 'TTYPE239' in a: 'R_COLLIM' E Extra keyword 'TTYPE24' in a: 'CONT_ID' E Extra keyword 'TTYPE240' in a: 'R_CUBPAR' E Extra keyword 'TTYPE241' in a: 'R_DARK' E Extra keyword 'TTYPE242' in a: 'R_DISPER' E Extra keyword 'TTYPE243' in a: 'R_DISTOR' E Extra keyword 'TTYPE244' in a: 'R_DRZPAR' E Extra keyword 'TTYPE245' in a: 'R_EXTR1D' E Extra keyword 'TTYPE246' in a: 'R_FILOFF' E Extra keyword 'TTYPE247' in a: 'R_FLAT' E Extra keyword 'TTYPE248' in a: 'R_DFLAT' E Extra keyword 'TTYPE249' in a: 'R_FFLAT' E Extra keyword 'TTYPE25' in a: 'DATE-OBS' E Extra keyword 'TTYPE250' in a: 'R_SFLAT' E Extra keyword 'TTYPE251' in a: 'R_FORE' E Extra keyword 'TTYPE252' in a: 'R_FPA' E Extra keyword 'TTYPE253' in a: 'R_FRINGE' E Extra keyword 'TTYPE254' in a: 'R_GAIN' E Extra keyword 'TTYPE255' in a: 'R_IFUFOR' E Extra keyword 'TTYPE256' in a: 'R_IFUPOS' E Extra keyword 'TTYPE257' in a: 'R_IFUSLI' E Extra keyword 'TTYPE258' in a: 'R_IPC' E Extra keyword 'TTYPE259' in a: 'R_LASTFR' E Extra keyword 'TTYPE26' in a: 'TIME-OBS' E Extra keyword 'TTYPE260' in a: 'R_LINEAR' E Extra keyword 'TTYPE261' in a: 'R_MASK' E Extra keyword 'TTYPE262' in a: 'R_MSA' E Extra keyword 'TTYPE263' in a: 'R_OTE' E Extra keyword 'TTYPE264' in a: 'R_PTHLOS' E Extra keyword 'TTYPE265' in a: 'R_PERSAT' E Extra keyword 'TTYPE266' in a: 'R_PHOTOM' E Extra keyword 'TTYPE267' in a: 'R_PSFMAS' E Extra keyword 'TTYPE268' in a: 'R_READNO' E Extra keyword 'TTYPE269' in a: 'R_REFPIX' E Extra keyword 'TTYPE27' in a: 'DATE-BEG' E Extra keyword 'TTYPE270' in a: 'R_REGION' E Extra keyword 'TTYPE271' in a: 'R_RESAMP' E Extra keyword 'TTYPE272' in a: 'R_RESOL' E Extra keyword 'TTYPE273' in a: 'R_RESET' E Extra keyword 'TTYPE274' in a: 'R_RSCD' E Extra keyword 'TTYPE275' in a: 'R_SATURA' E Extra keyword 'TTYPE276' in a: 'R_SPCWCS' E Extra keyword 'TTYPE277' in a: 'R_STRAY' E Extra keyword 'TTYPE278' in a: 'R_SUPERB' E Extra keyword 'TTYPE279' in a: 'R_THRPUT' E Extra keyword 'TTYPE28' in a: 'DATE-END' E Extra keyword 'TTYPE280' in a: 'R_TRPDEN' E Extra keyword 'TTYPE281' in a: 'R_TRPPAR' E Extra keyword 'TTYPE282' in a: 'R_TSPHOT' E Extra keyword 'TTYPE283' in a: 'R_V2V3' E Extra keyword 'TTYPE284' in a: 'R_WAVCOR' E Extra keyword 'TTYPE285' in a: 'R_WAVRAN' E Extra keyword 'TTYPE286' in a: 'S_PSFALI' E Extra keyword 'TTYPE287' in a: 'S_AMIANA' E Extra keyword 'TTYPE288' in a: 'S_AMIAVG' E Extra keyword 'TTYPE289' in a: 'S_AMINOR' E Extra keyword 'TTYPE29' in a: 'OBS_ID' E Extra keyword 'TTYPE290' in a: 'S_WCS' E Extra keyword 'TTYPE291' in a: 'S_MTWCS' E Extra keyword 'TTYPE292' in a: 'S_BKDSUB' E Extra keyword 'TTYPE293' in a: 'S_BARSHA' E Extra keyword 'TTYPE294' in a: 'S_COMB1D' E Extra keyword 'TTYPE295' in a: 'S_IFUCUB' E Extra keyword 'TTYPE296' in a: 'S_DARK' E Extra keyword 'TTYPE297' in a: 'S_DQINIT' E Extra keyword 'TTYPE298' in a: 'S_TELEMI' E Extra keyword 'TTYPE299' in a: 'S_ERRINI' E Extra keyword 'TTYPE3' in a: 'TIMESYS' E Extra keyword 'TTYPE30' in a: 'VISIT_ID' E Extra keyword 'TTYPE300' in a: 'S_EXTR1D' E Extra keyword 'TTYPE301' in a: 'S_EXTR2D' E Extra keyword 'TTYPE302' in a: 'S_FRSTFR' E Extra keyword 'TTYPE303' in a: 'S_FLAT' E Extra keyword 'TTYPE304' in a: 'S_FRINGE' E Extra keyword 'TTYPE305' in a: 'S_GANSCL' E Extra keyword 'TTYPE306' in a: 'S_GRPSCL' E Extra keyword 'TTYPE307' in a: 'S_GUICDS' E Extra keyword 'TTYPE308' in a: 'S_IMPRNT' E Extra keyword 'TTYPE309' in a: 'S_IPC' E Extra keyword 'TTYPE31' in a: 'PROGRAM' E Extra keyword 'TTYPE310' in a: 'S_JUMP' E Extra keyword 'TTYPE311' in a: 'S_KLIP' E Extra keyword 'TTYPE312' in a: 'S_LASTFR' E Extra keyword 'TTYPE313' in a: 'S_LINEAR' E Extra keyword 'TTYPE314' in a: 'S_MSBSUB' E Extra keyword 'TTYPE315' in a: 'S_MRSMAT' E Extra keyword 'TTYPE316' in a: 'S_MSAFLG' E Extra keyword 'TTYPE317' in a: 'S_OUTLIR' E Extra keyword 'TTYPE318' in a: 'S_PTHLOS' E Extra keyword 'TTYPE319' in a: 'S_PERSIS' E Extra keyword 'TTYPE32' in a: 'OBSERVTN' E Extra keyword 'TTYPE320' in a: 'S_PHOTOM' E Extra keyword 'TTYPE321' in a: 'S_RAMP' E Extra keyword 'TTYPE322' in a: 'S_REFPIX' E Extra keyword 'TTYPE323' in a: 'S_RESAMP' E Extra keyword 'TTYPE324' in a: 'S_RESET' E Extra keyword 'TTYPE325' in a: 'S_RSCD' E Extra keyword 'TTYPE326' in a: 'S_SATURA' E Extra keyword 'TTYPE327' in a: 'S_SKYMAT' E Extra keyword 'TTYPE328' in a: 'S_SRCCAT' E Extra keyword 'TTYPE329' in a: 'S_SRCTYP' E Extra keyword 'TTYPE33' in a: 'VISIT' E Extra keyword 'TTYPE330' in a: 'S_PSFSTK' E Extra keyword 'TTYPE331' in a: 'S_STRAY' E Extra keyword 'TTYPE332' in a: 'S_SUPERB' E Extra keyword 'TTYPE333' in a: 'S_TSPHOT' E Extra keyword 'TTYPE334' in a: 'S_TWKREG' E Extra keyword 'TTYPE335' in a: 'S_WAVCOR' E Extra keyword 'TTYPE336' in a: 'S_WFSCOM' E Extra keyword 'TTYPE337' in a: 'S_WHTLIT' E Extra keyword 'TTYPE338' in a: 'BKGLEVEL' E Extra keyword 'TTYPE339' in a: 'BKGSUB' E Extra keyword 'TTYPE34' in a: 'VISITGRP' E Extra keyword 'TTYPE340' in a: 'BUNIT' E Extra keyword 'TTYPE341' in a: 'PHOTMJSR' E Extra keyword 'TTYPE342' in a: 'PHOTUJA2' E Extra keyword 'TTYPE343' in a: 'PIXAR_SR' E Extra keyword 'TTYPE344' in a: 'PIXAR_A2' E Extra keyword 'TTYPE345' in a: 'RADESYS' E Extra keyword 'TTYPE346' in a: 'RA_V1' E Extra keyword 'TTYPE347' in a: 'DEC_V1' E Extra keyword 'TTYPE348' in a: 'PA_V3' E Extra keyword 'TTYPE349' in a: 'WCSAXES' E Extra keyword 'TTYPE35' in a: 'SEQ_ID' E Extra keyword 'TTYPE350' in a: 'CRPIX1' E Extra keyword 'TTYPE351' in a: 'CRPIX2' E Extra keyword 'TTYPE352' in a: 'CRPIX3' E Extra keyword 'TTYPE353' in a: 'CRVAL1' E Extra keyword 'TTYPE354' in a: 'CRVAL2' E Extra keyword 'TTYPE355' in a: 'CRVAL3' E Extra keyword 'TTYPE356' in a: 'CTYPE1' E Extra keyword 'TTYPE357' in a: 'CTYPE2' E Extra keyword 'TTYPE358' in a: 'CTYPE3' E Extra keyword 'TTYPE359' in a: 'CUNIT1' E Extra keyword 'TTYPE36' in a: 'ACT_ID' E Extra keyword 'TTYPE360' in a: 'CUNIT2' E Extra keyword 'TTYPE361' in a: 'CUNIT3' E Extra keyword 'TTYPE362' in a: 'CDELT1' E Extra keyword 'TTYPE363' in a: 'CDELT2' E Extra keyword 'TTYPE364' in a: 'CDELT3' E Extra keyword 'TTYPE365' in a: 'PC1_1' E Extra keyword 'TTYPE366' in a: 'PC1_2' E Extra keyword 'TTYPE367' in a: 'PC1_3' E Extra keyword 'TTYPE368' in a: 'PC2_1' E Extra keyword 'TTYPE369' in a: 'PC2_2' E Extra keyword 'TTYPE37' in a: 'EXPOSURE' E Extra keyword 'TTYPE370' in a: 'PC2_3' E Extra keyword 'TTYPE371' in a: 'PC3_1' E Extra keyword 'TTYPE372' in a: 'PC3_2' E Extra keyword 'TTYPE373' in a: 'PC3_3' E Extra keyword 'TTYPE374' in a: 'CD1_1' E Extra keyword 'TTYPE375' in a: 'CD1_2' E Extra keyword 'TTYPE376' in a: 'CD2_1' E Extra keyword 'TTYPE377' in a: 'CD2_2' E Extra keyword 'TTYPE378' in a: 'S_REGION' E Extra keyword 'TTYPE379' in a: 'WAVSTART' E Extra keyword 'TTYPE38' in a: 'BKGDTARG' E Extra keyword 'TTYPE380' in a: 'WAVEND' E Extra keyword 'TTYPE381' in a: 'DISPAXIS' E Extra keyword 'TTYPE382' in a: 'SPORDER' E Extra keyword 'TTYPE383' in a: 'V2_REF' E Extra keyword 'TTYPE384' in a: 'V3_REF' E Extra keyword 'TTYPE385' in a: 'VPARITY' E Extra keyword 'TTYPE386' in a: 'V3I_YANG' E Extra keyword 'TTYPE387' in a: 'RA_REF' E Extra keyword 'TTYPE388' in a: 'DEC_REF' E Extra keyword 'TTYPE389' in a: 'ROLL_REF' E Extra keyword 'TTYPE39' in a: 'TEMPLATE' E Extra keyword 'TTYPE4' in a: 'FILENAME' E Extra keyword 'TTYPE40' in a: 'OBSLABEL' E Extra keyword 'TTYPE41' in a: 'ENG_QUAL' E Extra keyword 'TTYPE42' in a: 'ENGQLPTG' E Extra keyword 'TTYPE43' in a: 'VISITYPE' E Extra keyword 'TTYPE44' in a: 'VSTSTART' E Extra keyword 'TTYPE45' in a: 'VISITSTA' E Extra keyword 'TTYPE46' in a: 'NEXPOSUR' E Extra keyword 'TTYPE47' in a: 'INTARGET' E Extra keyword 'TTYPE48' in a: 'TARGOOPP' E Extra keyword 'TTYPE49' in a: 'TSOVISIT' E Extra keyword 'TTYPE5' in a: 'FILETYPE' E Extra keyword 'TTYPE50' in a: 'EXP_ONLY' E Extra keyword 'TTYPE51' in a: 'TARGPROP' E Extra keyword 'TTYPE52' in a: 'TARGNAME' E Extra keyword 'TTYPE53' in a: 'TARGTYPE' E Extra keyword 'TTYPE54' in a: 'TARG_RA' E Extra keyword 'TTYPE55' in a: 'TARG_DEC' E Extra keyword 'TTYPE56' in a: 'TARGURA' E Extra keyword 'TTYPE57' in a: 'TARGUDEC' E Extra keyword 'TTYPE58' in a: 'MU_RA' E Extra keyword 'TTYPE59' in a: 'MU_DEC' E Extra keyword 'TTYPE6' in a: 'SDP_VER' E Extra keyword 'TTYPE60' in a: 'MU_EPOCH' E Extra keyword 'TTYPE61' in a: 'PROP_RA' E Extra keyword 'TTYPE62' in a: 'PROP_DEC' E Extra keyword 'TTYPE63' in a: 'SRCTYAPT' E Extra keyword 'TTYPE64' in a: 'INSTRUME' E Extra keyword 'TTYPE65' in a: 'DETECTOR' E Extra keyword 'TTYPE66' in a: 'MODULE' E Extra keyword 'TTYPE67' in a: 'CHANNEL' E Extra keyword 'TTYPE68' in a: 'FILTER' E Extra keyword 'TTYPE69' in a: 'PUPIL' E Extra keyword 'TTYPE7' in a: 'PRD_VER' E Extra keyword 'TTYPE70' in a: 'PILIN' E Extra keyword 'TTYPE71' in a: 'GRATING' E Extra keyword 'TTYPE72' in a: 'BAND' E Extra keyword 'TTYPE73' in a: 'FXD_SLIT' E Extra keyword 'TTYPE74' in a: 'FOCUSPOS' E Extra keyword 'TTYPE75' in a: 'PREIMAGE' E Extra keyword 'TTYPE76' in a: 'CCCSTATE' E Extra keyword 'TTYPE77' in a: 'CORONMSK' E Extra keyword 'TTYPE78' in a: 'MSASTATE' E Extra keyword 'TTYPE79' in a: 'MSAMETFL' E Extra keyword 'TTYPE8' in a: 'CAL_VER' E Extra keyword 'TTYPE80' in a: 'MSAMETID' E Extra keyword 'TTYPE81' in a: 'MSACONID' E Extra keyword 'TTYPE82' in a: 'LAMP' E Extra keyword 'TTYPE83' in a: 'OPMODE' E Extra keyword 'TTYPE84' in a: 'GWA_XTIL' E Extra keyword 'TTYPE85' in a: 'GWA_YTIL' E Extra keyword 'TTYPE86' in a: 'GWA_XP_V' E Extra keyword 'TTYPE87' in a: 'GWA_YP_V' E Extra keyword 'TTYPE88' in a: 'GWA_PXAV' E Extra keyword 'TTYPE89' in a: 'GWA_PYAV' E Extra keyword 'TTYPE9' in a: 'CAL_VCS' E Extra keyword 'TTYPE90' in a: 'GWA_TILT' E Extra keyword 'TTYPE91' in a: 'FWCPOS' E Extra keyword 'TTYPE92' in a: 'PWCPOS' E Extra keyword 'TTYPE93' in a: 'EXPCOUNT' E Extra keyword 'TTYPE94' in a: 'EXPRIPAR' E Extra keyword 'TTYPE95' in a: 'EXP_TYPE' E Extra keyword 'TTYPE96' in a: 'EXPSTART' E Extra keyword 'TTYPE97' in a: 'MJD-BEG' E Extra keyword 'TTYPE98' in a: 'EXPMID' E Extra keyword 'TTYPE99' in a: 'MJD-AVG' E Keyword BITPIX has different values: E a> 8 E b> -32 E Keyword EXTNAME has different values: E a> HDRTAB E b> WHT E Keyword NAXIS2 has different values: E a> 6 E b> 2340 E Keyword NAXIS2 has different comments: E a> length of dimension 2 E Keyword PCOUNT has different comments: E a> number of group parameters E ? ------ E b> number of parameters E Keyword XTENSION has different values: E a> BINTABLE E b> IMAGE E Keyword XTENSION has different comments: E a> binary table extension E b> Image extension E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff629fd3160>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:132: AssertionError ---------------------------- Captured stderr setup ----------------------------- 2021-06-04 04:42:46,659 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:42:46,660 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:42:46,661 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:42:46,662 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:42:46,663 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:42:46,664 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:42:46,664 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:42:46,664 - stpipe - INFO - OS: Linux 2021-06-04 04:42:46,987 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). 2021-06-04 04:42:46,992 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:42:47,132 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-06-04 04:42:47,153 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-06-04 04:42:47,155 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:42:47,155 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:42:47,155 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:42:47,155 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:42:47,155 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-06-04 04:42:47,156 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:42:47,156 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-06-04 04:42:47,157 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. 2021-06-04 04:42:47,160 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:42:47,160 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:42:47,160 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:42:47,161 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:42:47,161 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-06-04 04:42:47,161 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:42:47,161 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2021-06-04 04:42:47,161 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... 2021-06-04 04:42:47,499 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-06-04 04:42:47,500 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:42:47,760 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2021-06-04 04:42:47,761 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2021-06-04 04:42:47,761 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:42:47,815 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:42:48,013 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-06-04 04:42:48,014 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:42:49,814 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:42:49,996 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-06-04 04:42:49,998 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-06-04 04:42:50,023 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits 2021-06-04 04:42:50,023 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-06-04 04:42:50,110 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:42:50,110 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-06-04 04:42:50,110 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:42:50,110 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-06-04 04:42:50,110 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-06-04 04:42:50,306 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:42:50,308 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.467368 2021-06-04 04:42:50,344 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:42:50,529 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-06-04 04:42:50,531 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:42:50,531 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:42:50,532 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:42:50,532 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2021-06-04 04:42:50,533 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-06-04 04:42:50,704 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrcb5_cal.fits 2021-06-04 04:42:50,704 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-06-04 04:42:51,547 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:42:51,548 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:42:51,549 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:42:51,550 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:42:51,551 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:42:51,552 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:42:51,552 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:42:51,552 - stpipe - INFO - OS: Linux 2021-06-04 04:42:51,702 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). 2021-06-04 04:42:51,706 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:42:51,851 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-06-04 04:42:51,858 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-06-04 04:42:51,860 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:42:51,860 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:42:51,860 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:42:51,860 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:42:51,860 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-06-04 04:42:51,862 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:42:51,862 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-06-04 04:42:51,863 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-06-04 04:42:51,864 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:42:51,864 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:42:51,864 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:42:51,864 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:42:51,865 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:42:51,865 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:42:51,865 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:42:51,865 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2021-06-04 04:42:51,867 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... 2021-06-04 04:42:52,114 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-06-04 04:42:52,115 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:42:52,366 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2021-06-04 04:42:52,366 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2021-06-04 04:42:52,367 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:42:52,419 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:42:52,531 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-06-04 04:42:52,532 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:42:52,961 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:42:53,073 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-06-04 04:42:53,074 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-06-04 04:42:53,098 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits 2021-06-04 04:42:53,099 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-06-04 04:42:53,185 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:42:53,185 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-06-04 04:42:53,185 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:42:53,185 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-06-04 04:42:53,185 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-06-04 04:42:53,231 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:42:53,233 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.531918 2021-06-04 04:42:53,267 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:42:53,448 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-06-04 04:42:53,450 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:42:53,450 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:42:53,451 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:42:53,451 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2021-06-04 04:42:53,452 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-06-04 04:42:53,642 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrca5_cal.fits 2021-06-04 04:42:53,642 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-06-04 04:42:54,488 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:42:54,489 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:42:54,490 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:42:54,490 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:42:54,491 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:42:54,492 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:42:54,492 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:42:54,492 - stpipe - INFO - OS: Linux 2021-06-04 04:42:54,639 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). 2021-06-04 04:42:54,642 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:42:54,783 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-06-04 04:42:54,791 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-06-04 04:42:54,792 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:42:54,793 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:42:54,793 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:42:54,793 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:42:54,793 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-06-04 04:42:54,795 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:42:54,795 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-06-04 04:42:54,796 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-06-04 04:42:54,798 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... 2021-06-04 04:42:55,044 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-06-04 04:42:55,045 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:42:55,296 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2021-06-04 04:42:55,296 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2021-06-04 04:42:55,296 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:42:55,348 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:42:55,459 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-06-04 04:42:55,460 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:42:55,889 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:42:55,996 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-06-04 04:42:55,996 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-06-04 04:42:56,021 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits 2021-06-04 04:42:56,021 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-06-04 04:42:56,107 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:42:56,107 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-06-04 04:42:56,108 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:42:56,108 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-06-04 04:42:56,108 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-06-04 04:42:56,156 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:42:56,157 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.467368 2021-06-04 04:42:56,192 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:42:56,312 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-06-04 04:42:56,313 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:42:56,313 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:42:56,314 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:42:56,314 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2021-06-04 04:42:56,315 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-06-04 04:42:56,510 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrcb5_cal.fits 2021-06-04 04:42:56,510 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-06-04 04:42:57,640 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:42:57,641 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:42:57,642 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:42:57,643 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:42:57,643 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:42:57,644 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:42:57,644 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:42:57,644 - stpipe - INFO - OS: Linux 2021-06-04 04:42:57,862 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). 2021-06-04 04:42:57,866 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:42:58,001 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-06-04 04:42:58,005 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-06-04 04:42:58,008 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:42:58,008 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:42:58,008 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:42:58,008 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:42:58,008 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-06-04 04:42:58,009 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:42:58,009 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-06-04 04:42:58,011 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. 2021-06-04 04:42:58,013 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:42:58,013 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:42:58,013 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:42:58,013 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:42:58,013 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-06-04 04:42:58,013 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:42:58,014 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2021-06-04 04:42:58,014 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... 2021-06-04 04:42:58,338 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-06-04 04:42:58,339 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:42:58,596 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2021-06-04 04:42:58,596 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2021-06-04 04:42:58,596 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:42:58,650 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:42:58,838 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-06-04 04:42:58,839 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:42:59,296 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:42:59,482 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-06-04 04:42:59,483 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-06-04 04:42:59,508 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits 2021-06-04 04:42:59,508 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-06-04 04:42:59,602 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:42:59,603 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-06-04 04:42:59,603 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:42:59,603 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-06-04 04:42:59,603 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-06-04 04:42:59,649 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:42:59,650 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.531918 2021-06-04 04:42:59,684 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:42:59,873 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-06-04 04:42:59,874 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:42:59,874 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:42:59,875 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:42:59,875 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2021-06-04 04:42:59,876 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-06-04 04:43:00,066 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrca5_cal.fits 2021-06-04 04:43:00,067 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-06-04 04:43:01,061 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:43:01,062 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:43:01,063 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:43:01,063 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:43:01,064 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:43:01,065 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:43:01,065 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:43:01,065 - stpipe - INFO - OS: Linux 2021-06-04 04:43:01,331 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). 2021-06-04 04:43:01,335 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:43:01,473 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-06-04 04:43:01,479 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-06-04 04:43:01,481 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:43:01,481 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:43:01,481 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:43:01,481 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:43:01,481 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-06-04 04:43:01,482 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:43:01,482 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-06-04 04:43:01,482 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. 2021-06-04 04:43:01,485 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:43:01,485 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:43:01,485 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:43:01,485 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:43:01,485 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-06-04 04:43:01,486 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:43:01,486 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2021-06-04 04:43:01,486 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... 2021-06-04 04:43:01,772 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-06-04 04:43:01,773 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:43:02,024 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2021-06-04 04:43:02,024 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2021-06-04 04:43:02,024 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:43:02,077 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:43:02,194 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-06-04 04:43:02,195 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:43:02,657 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:43:02,772 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-06-04 04:43:02,773 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-06-04 04:43:02,797 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits 2021-06-04 04:43:02,797 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-06-04 04:43:02,893 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:43:02,893 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-06-04 04:43:02,893 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:43:02,893 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-06-04 04:43:02,893 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-06-04 04:43:02,938 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:43:02,939 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.467368 2021-06-04 04:43:02,974 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:43:03,101 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-06-04 04:43:03,102 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:43:03,102 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:43:03,103 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:43:03,103 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2021-06-04 04:43:03,104 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-06-04 04:43:03,297 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrcb5_cal.fits 2021-06-04 04:43:03,297 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-06-04 04:43:03,645 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf 2021-06-04 04:43:03,655 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-06-04 04:43:03,954 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-06-04 04:43:04,030 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-06-04 04:43:04,031 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-06-04 04:43:04,032 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-06-04 04:43:04,034 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-06-04 04:43:04,035 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-06-04 04:43:04,036 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:43:04,036 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-06-04 04:43:04,037 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:43:04,037 - stpipe - INFO - OS: Linux 2021-06-04 04:43:04,252 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). 2021-06-04 04:43:04,257 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-06-04 04:43:04,342 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-06-04 04:43:04,348 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-06-04 04:43:04,350 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-06-04 04:43:04,351 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:43:04,353 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-06-04 04:43:04,986 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<ModelContainer>,). 2021-06-04 04:43:04,988 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} 2021-06-04 04:43:08,220 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. 2021-06-04 04:43:11,584 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. 2021-06-04 04:43:15,502 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. 2021-06-04 04:43:18,654 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. 2021-06-04 04:43:22,137 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. 2021-06-04 04:43:25,579 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. 2021-06-04 04:43:25,627 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:25,627 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 3. 2021-06-04 04:43:25,627 - stpipe.Image3Pipeline.tweakreg - INFO - Image groups: 2021-06-04 04:43:25,670 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00001_nrc': 2021-06-04 04:43:25,670 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrca5_cal 2021-06-04 04:43:25,670 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrcb5_cal 2021-06-04 04:43:25,713 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00002_nrc': 2021-06-04 04:43:25,713 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrca5_cal 2021-06-04 04:43:25,713 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrcb5_cal 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00003_nrc': 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrca5_cal 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrcb5_cal 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2021-06-04 04:43:25.885708 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.7.2 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:26,045 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image 2021-06-04 04:43:26,049 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. 2021-06-04 04:43:26,221 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2021-06-04 04:43:26,221 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-06-04 04:43:26,223 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. 2021-06-04 04:43:26,223 - stpipe.Image3Pipeline.tweakreg - INFO - Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... 2021-06-04 04:43:26,224 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.027948 YSH: -0.0730398 PROPER ROT: 0.00561762 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00561762 SKEW: -0.0223542 ROT_X: 0.0167947 ROT_Y: -0.0055595 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.175216 FIT MAE: 0.128752 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 95 objects. 2021-06-04 04:43:26,296 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. 2021-06-04 04:43:26,482 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2021-06-04 04:43:26,482 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-06-04 04:43:26,483 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. 2021-06-04 04:43:26,484 - stpipe.Image3Pipeline.tweakreg - INFO - Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... 2021-06-04 04:43:26,484 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0304202 YSH: -0.0565083 PROPER ROT: 0.00576196 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00576196 SKEW: -0.0145191 ROT_X: 0.0130215 ROT_Y: -0.00149761 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.185756 FIT MAE: 0.136124 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 87 objects. 2021-06-04 04:43:26,557 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:26,557 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2021-06-04 04:43:26.557629 2021-06-04 04:43:26,557 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.671921 2021-06-04 04:43:26,557 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:26,673 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done 2021-06-04 04:43:26,852 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-06-04 04:43:26,853 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-06-04 04:43:27,028 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:27,028 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:43:27.027994 2021-06-04 04:43:27,028 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:27,028 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-06-04 04:43:27,028 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-06-04 04:43:27,028 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-06-04 04:43:27,029 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:27,029 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-06-04 04:43:30,749 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-06-04 04:43:30,749 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.000498448 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.000498448 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.00110687 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.00110687 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-06-04 04:43:31,443 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: 0.18208548270841154 [not converted] 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:43:31.444907 2021-06-04 04:43:31,445 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.416913 2021-06-04 04:43:31,445 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:31,459 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-06-04 04:43:31,575 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-06-04 04:43:31,577 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:43:31,580 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 6 inputs 2021-06-04 04:43:36,528 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:43:44,030 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:43:53,239 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:44:02,345 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:44:10,947 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:44:20,035 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:44:26,660 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 3 images 2021-06-04 04:44:30,767 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-06-04 04:44:35,294 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-06-04 04:44:40,376 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-06-04 04:44:47,662 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-06-04 04:44:55,428 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-06-04 04:45:02,794 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-06-04 04:45:09,619 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-06-04 04:45:15,799 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits 2021-06-04 04:45:16,482 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits 2021-06-04 04:45:17,453 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits 2021-06-04 04:45:18,128 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits 2021-06-04 04:45:19,054 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits 2021-06-04 04:45:19,731 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits 2021-06-04 04:45:19,731 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:45:20,514 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-06-04 04:45:20,516 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:45:20,535 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-06-04 04:45:20,713 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw42424-o002_t001_nircam_clear-f444w 2021-06-04 04:45:24,054 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:45:29,281 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:45:35,189 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:45:41,164 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:45:46,964 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:45:52,889 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:45:55,235 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 2021-06-04 04:45:55,727 - stpipe.Image3Pipeline.resample - INFO - Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits 2021-06-04 04:45:55,727 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-06-04 04:45:55,963 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). 2021-06-04 04:45:55,964 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-06-04 04:45:55,981 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-06-04 04:45:55,990 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-06-04 04:45:55,990 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-06-04 04:45:55,990 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: MULTIPLE 2021-06-04 04:45:55,990 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F444W 2021-06-04 04:45:55,990 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-06-04 04:45:55,990 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-06-04 04:45:56,036 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 3.24181 2021-06-04 04:46:02,027 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 130 sources 2021-06-04 04:46:04,052 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: jw42424-o002_t001_nircam_clear-f444w_cat.ecsv 2021-06-04 04:46:04,160 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in jw42424-o002_t001_nircam_clear-f444w_segm.fits 2021-06-04 04:46:04,161 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw42424-o002_t001_nircam_clear-f444w_segm.fits 2021-06-04 04:46:04,161 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2021-06-04 04:46:04,162 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00001_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00002_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00002_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00003_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00003_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Image3Pipeline.tweakreg:step.py:367 Step tweakreg running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.tweakreg:step.py:371 Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:128 INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:129 Number of image groups to be aligned: 3. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:131 Image groups: INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:156 * Images in GROUP 'jw42424001001_01101_00001_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00001_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00001_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:156 * Images in GROUP 'jw42424001001_01101_00002_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00002_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00002_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:156 * Images in GROUP 'jw42424001001_01101_00003_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00003_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00003_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:162 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-06-04 04:43:25.885708 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-06-04 04:43:25.885708 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.2 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.2 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:612 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:612 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.027948 YSH: -0.0730398 PROPER ROT: 0.00561762 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.027948 YSH: -0.0730398 PROPER ROT: 0.00561762 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00561762 SKEW: -0.0223542 ROT_X: 0.0167947 ROT_Y: -0.0055595 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00561762 SKEW: -0.0223542 ROT_X: 0.0167947 ROT_Y: -0.0055595 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.175216 FIT MAE: 0.128752 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.175216 FIT MAE: 0.128752 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0304202 YSH: -0.0565083 PROPER ROT: 0.00576196 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0304202 YSH: -0.0565083 PROPER ROT: 0.00576196 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00576196 SKEW: -0.0145191 ROT_X: 0.0130215 ROT_Y: -0.00149761 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00576196 SKEW: -0.0145191 ROT_X: 0.0130215 ROT_Y: -0.00149761 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.185756 FIT MAE: 0.136124 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.185756 FIT MAE: 0.136124 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:661 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:661 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:662 ***** tweakwcs.imalign.align_wcs() ended on 2021-06-04 04:43:26.557629 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:662 ***** tweakwcs.imalign.align_wcs() ended on 2021-06-04 04:43:26.557629 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.671921 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.671921 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 INFO stpipe.Image3Pipeline.tweakreg:step.py:470 Step tweakreg done INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:43:27.027994 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:43:27.027994 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: 0.18208548270841154 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: 0.18208548270841154 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:43:31.444907 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:43:31.444907 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.416913 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.416913 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 6 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:406 Model size 45.6M available system memory 119.4G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:406 Model size 45.6M available system memory 119.4G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.35759197615473 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.35759197615473 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.27418877056629 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.27418877056629 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.30084064272433 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.30084064272433 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 95047 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 95047 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4165889 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4165889 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164123 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164123 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4165937 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4165937 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4158111 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4158111 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164538 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164538 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164515 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164515 INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:68 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:406 Model size 45.6M available system memory 117.5G DEBUG stpipe.Image3Pipeline.resample:util.py:406 Model size 45.6M available system memory 117.5G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw42424-o002_t001_nircam_clear-f444w INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw42424-o002_t001_nircam_clear-f444w DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:step.py:928 Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:367 Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:371 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 130 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:120 Wrote source catalog: jw42424-o002_t001_nircam_clear-f444w_cat.ecsv DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:step.py:928 Saved model in jw42424-o002_t001_nircam_clear-f444w_segm.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:126 Wrote segmentation map: jw42424-o002_t001_nircam_clear-f444w_segm.fits INFO stpipe.Image3Pipeline.source_catalog:step.py:470 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:470 Step Image3Pipeline done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334785600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334785600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334785600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334785600 _______________________ test_nircam_image_stage3_catalog _______________________ run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...sv', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv'} diff_astropy_tables = <function diff_astropy_tables.<locals>._diff_astropy_tables at 0x7ff629863790> @pytest.mark.bigdata def test_nircam_image_stage3_catalog(run_image3pipeline, rtdata_module, diff_astropy_tables): rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" rtdata.output = "jw42424-o002_t001_nircam_clear-f444w_cat.ecsv" rtdata.get_truth("truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv") > assert diff_astropy_tables(rtdata.output, rtdata.truth, rtol=1e-4, atol=1e-5) E AssertionError: Column names (or order) do not match E assert ['id', 'xcent...lux_err', ...] == ['label', 'xc...lux_err', ...] E At index 0 diff: 'id' != 'label' E Full diff: E [ E - 'label', E + 'id', E 'xcentroid', E 'ycentroid', E 'sky_centroid', E 'aper_bkg_flux', E 'aper_bkg_flux_err', E 'aper30_flux', E 'aper30_flux_err', E 'aper50_flux', E 'aper50_flux_err', E 'aper70_flux', E 'aper70_flux_err', E 'aper_total_flux', E 'aper_total_flux_err', E 'aper30_abmag', E 'aper30_abmag_err', E 'aper50_abmag', E 'aper50_abmag_err', E 'aper70_abmag', E 'aper70_abmag_err', E 'aper_total_abmag', E 'aper_total_abmag_err', E 'aper30_vegamag', E 'aper30_vegamag_err', E 'aper50_vegamag', E 'aper50_vegamag_err', E 'aper70_vegamag', E 'aper70_vegamag_err', E 'aper_total_vegamag', E 'aper_total_vegamag_err', E - 'CI_50_30', E - 'CI_70_50', E ? ^ E + 'CI_30_50', E ? ^ E - 'CI_70_30', E ? ^ ^ E + 'CI_50_70', E ? ^ ^ E - 'is_extended', E + 'CI_30_70', E + 'is_star', E 'sharpness', E 'roundness', E - 'nn_label', E 'nn_dist', E + 'nn_abmag', E 'isophotal_flux', E 'isophotal_flux_err', E 'isophotal_abmag', E 'isophotal_abmag_err', E 'isophotal_vegamag', E 'isophotal_vegamag_err', E 'isophotal_area', E 'semimajor_sigma', E 'semiminor_sigma', E 'ellipticity', E 'orientation', E 'sky_orientation', E 'sky_bbox_ll', E 'sky_bbox_ul', E 'sky_bbox_lr', E 'sky_bbox_ur', E ] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:142: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 106604 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 106604 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 106604 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 106604 _______________________ test_nircam_image_stage3_segmap ________________________ run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...s', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_stage3_segmap(run_image3pipeline, rtdata_module, fitsdiff_default_kwargs): rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" rtdata.output = "jw42424-o002_t001_nircam_clear-f444w_segm.fits" rtdata.get_truth("truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_t001_nircam_clear-f444w_segm.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424-o002_t001_nircam_clear-f444w_segm.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 176 E b: 178 E Extra keyword 'PIXFRAC' in b: 1.0 E Extra keyword 'PXSCLRT' in b: 1.0 E Keyword BKGLEVEL has different values: E a> 0.1820854827084115 E b> 0.1817218501964128 E Keyword DATAMODL has different values: E a> ImageModel E b> SegmentationMapModel E Keyword EFFEXPTM has different values: E a> 150.31478 E b> 450.94434 E Keyword TEXPTIME has different values: E a> 150.31478 E b> 450.94434 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 9 E b: 28 E Extra keyword '' in b: '' E Extra keyword 'BSCALE' in b: 1 E Extra keyword 'BZERO' in b: 2147483648 E Extra keyword 'CDELT1' in b: 1.74799277717236e-05 E Extra keyword 'CDELT2' in b: 1.74799277717236e-05 E Extra keyword 'CRPIX1' in b: 2554.339572995955 E Extra keyword 'CRPIX2' in b: 1170.77646643729 E Extra keyword 'CRVAL1' in b: 22.00070633024032 E Extra keyword 'CRVAL2' in b: 12.00106915025607 E Extra keyword 'CTYPE1' in b: 'RA---TAN' E Extra keyword 'CTYPE2' in b: 'DEC--TAN' E Extra keyword 'CUNIT1' in b: 'deg' E Extra keyword 'CUNIT2' in b: 'deg' E Extra keyword 'PC1_1' in b: -0.9999992795937078 E Extra keyword 'PC1_2' in b: -0.00120033831291363 E Extra keyword 'PC2_1' in b: -0.00120033831291363 E Extra keyword 'PC2_2' in b: 0.9999992795937078 E Extra keyword 'S_REGION' in b: 'POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315' E Extra keyword 'WCSAXES' in b: 2 E Keyword BITPIX has different values: E a> -32 E ? - E b> 32 E E Data contains differences: E Data differs at [1354, 85]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [1355, 85]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [1354, 86]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [1355, 86]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [1356, 86]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [1354, 87]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [1355, 87]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [3410, 129]: E (float32) a> 3.0 E (uint32) b> 2 E Data differs at [3411, 129]: E (float32) a> 3.0 E (uint32) b> 2 E Data differs at [3412, 129]: E (float32) a> 3.0 E (uint32) b> 2 E ... E 21305 different pixels found (0.18% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6278fdfd0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:152: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47839680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47839680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47839680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47839680 _______________________ test_nircam_image_moving_target ________________________ rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ving_targe0/truth/mt_assoc_i2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_moving_target(rtdata, fitsdiff_default_kwargs): """Test resampled i2d of moving target exposures for NIRCam imaging""" collect_pipeline_cfgs("config") rtdata.get_asn("nircam/image/mt_asn.json") rtdata.output = "mt_assoc_i2d.fits" args = ["config/calwebb_image3.cfg", rtdata.input] Step.from_cmdline(args) rtdata.get_truth("truth/test_nircam_mtimage/mt_assoc_i2d.fits") fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_assoc_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/truth/mt_assoc_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Files contain different numbers of HDUs: E a: 6 E b: 10 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 173 E b: 175 E Extra keyword 'PIXFRAC' in b: 1.0 E Extra keyword 'PXSCLRT' in b: 1.0 E Keyword EFFEXPTM has different values: E a> 75.15739 E b> 300.62956 E Keyword TEXPTIME has different values: E a> 75.15739 E b> 300.62956 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 51 E b: 44 E Extra keyword 'DEC_REF' in a: -27.79878080395927 E Extra keyword 'RA_REF' in a: 53.10000511435869 E Extra keyword 'ROLL_REF' in a: 0.01313845405406973 E Extra keyword 'V2_REF' in a: -89.596514 E Extra keyword 'V3I_YANG' in a: 0.008058 E Extra keyword 'V3_REF' in a: -491.474153 E Extra keyword 'VPARITY' in a: -1 E E Data contains differences: E Data differs at [9, 1]: E a> -0.35311046 E b> -0.34557453 E Data differs at [10, 1]: E a> -0.10952326 E b> -0.26017228 E Data differs at [11, 1]: E a> -0.03382148 E b> -0.17641784 E Data differs at [12, 1]: E a> 0.030479705 E b> -0.027480701 E Data differs at [13, 1]: E a> -0.0028103488 E b> -0.22043116 E Data differs at [14, 1]: E a> -0.15586881 E b> -0.22509731 E Data differs at [15, 1]: E a> -0.15411167 E b> -0.317307 E Data differs at [21, 1]: E a> 0.032743827 E b> 0.025927342 E Data differs at [22, 1]: E a> -0.17056331 E b> -0.16844717 E Data differs at [32, 1]: E a> -0.18574281 E b> -0.18570586 E ... E 4744731 different pixels found (70.76% different). E E Extension HDU 2: E Extension names differ: E a: CON E b: ERR E E Headers contain differences: E Headers have different number of cards: E a: 9 E b: 10 E Extra keyword 'BUNIT' in b: 'MJy/sr' E Keyword BITPIX has different values: E a> 32 E b> -32 E ? + E Keyword EXTNAME has different values: E a> CON E b> ERR E E Data contains differences: E Data differs at [1, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [2, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [3, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [4, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [5, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [6, 1]: E (int32) a> 4 E (float32) b> nan E Data differs at [7, 1]: E (int32) a> 4 E (float32) b> nan E Data differs at [8, 1]: E (int32) a> 4 E (float32) b> nan E Data differs at [9, 1]: E (int32) a> 4 E (float32) b> nan E Data differs at [10, 1]: E (int32) a> 4 E (float32) b> nan E ... E 6705600 different pixels found (100.00% different). E E Extension HDU 3: E Extension names differ: E a: WHT E b: CON E E Headers contain differences: E Keyword BITPIX has different values: E a> -32 E ? - E b> 32 E Keyword EXTNAME has different values: E a> WHT E b> CON E E Data contains differences: E Data differs at [6, 1]: E (float32) a> 13.260393 E (int32) b> 4 E Data differs at [7, 1]: E (float32) a> 35.65477 E (int32) b> 4 E Data differs at [8, 1]: E (float32) a> 28.937618 E (int32) b> 4 E Data differs at [9, 1]: E (float32) a> 23.41686 E (int32) b> 4 E Data differs at [10, 1]: E (float32) a> 6.703286 E (int32) b> 4 E Data differs at [11, 1]: E (float32) a> 13.961745 E (int32) b> 4 E Data differs at [12, 1]: E (float32) a> 26.77895 E (int32) b> 4 E Data differs at [13, 1]: E (float32) a> 10.090864 E (int32) b> 4 E Data differs at [14, 1]: E (float32) a> 9.984749 E (int32) b> 4 E Data differs at [15, 1]: E (float32) a> 12.84628 E (int32) b> 4 E ... E 6086891 different pixels found (90.77% different). E E Extension HDU 4: E Extension types differ: E a: BINTABLE E b: IMAGE E Extension names differ: E a: HDRTAB E b: WHT E E Headers contain differences: E Headers have different number of cards: E a: 788 E b: 9 E Extra keyword 'TFIELDS' in a: 389 E Extra keyword 'TTYPE1' in a: 'DATE' E Extra keyword 'TTYPE10' in a: 'DATAMODL' E Extra keyword 'TTYPE100' in a: 'EXPEND' E Extra keyword 'TTYPE101' in a: 'MJD-END' E Extra keyword 'TTYPE102' in a: 'TDB-BEG' E Extra keyword 'TTYPE103' in a: 'TDB-MID' E Extra keyword 'TTYPE104' in a: 'TDB-END' E Extra keyword 'TTYPE105' in a: 'READPATT' E Extra keyword 'TTYPE106' in a: 'EXSEGNUM' E Extra keyword 'TTYPE107' in a: 'EXSEGTOT' E Extra keyword 'TTYPE108' in a: 'NOUTPUTS' E Extra keyword 'TTYPE109' in a: 'NINTS' E Extra keyword 'TTYPE11' in a: 'TELESCOP' E Extra keyword 'TTYPE110' in a: 'INTSTART' E Extra keyword 'TTYPE111' in a: 'INTEND' E Extra keyword 'TTYPE112' in a: 'NGROUPS' E Extra keyword 'TTYPE113' in a: 'NFRAMES' E Extra keyword 'TTYPE114' in a: 'MIRNGRPS' E Extra keyword 'TTYPE115' in a: 'MIRNFRMS' E Extra keyword 'TTYPE116' in a: 'FRMDIVSR' E Extra keyword 'TTYPE117' in a: 'GROUPGAP' E Extra keyword 'TTYPE118' in a: 'DRPFRMS1' E Extra keyword 'TTYPE119' in a: 'DRPFRMS3' E Extra keyword 'TTYPE12' in a: 'HGA_MOVE' E Extra keyword 'TTYPE120' in a: 'NSAMPLES' E Extra keyword 'TTYPE121' in a: 'TSAMPLE' E Extra keyword 'TTYPE122' in a: 'TFRAME' E Extra keyword 'TTYPE123' in a: 'TGROUP' E Extra keyword 'TTYPE124' in a: 'EFFINTTM' E Extra keyword 'TTYPE125' in a: 'EFFEXPTM' E Extra keyword 'TTYPE126' in a: 'XPOSURE' E Extra keyword 'TTYPE127' in a: 'DURATION' E Extra keyword 'TTYPE128' in a: 'TELAPSE' E Extra keyword 'TTYPE129' in a: 'NRSTSTRT' E Extra keyword 'TTYPE13' in a: 'HGA_STRT' E Extra keyword 'TTYPE130' in a: 'NRESETS' E Extra keyword 'TTYPE131' in a: 'ZEROFRAM' E Extra keyword 'TTYPE132' in a: 'DATAPROB' E Extra keyword 'TTYPE133' in a: 'SCA_NUM' E Extra keyword 'TTYPE134' in a: 'DATAMODE' E Extra keyword 'TTYPE135' in a: 'NRS_NORM' E Extra keyword 'TTYPE136' in a: 'NRS_REF' E Extra keyword 'TTYPE137' in a: 'SCTARATE' E Extra keyword 'TTYPE138' in a: 'GAINFACT' E Extra keyword 'TTYPE139' in a: 'IS_IMPRT' E Extra keyword 'TTYPE14' in a: 'HGA_STOP' E Extra keyword 'TTYPE140' in a: 'IS_PSF' E Extra keyword 'TTYPE141' in a: 'SELFREF' E Extra keyword 'TTYPE142' in a: 'SUBARRAY' E Extra keyword 'TTYPE143' in a: 'SUBSTRT1' E Extra keyword 'TTYPE144' in a: 'SUBSTRT2' E Extra keyword 'TTYPE145' in a: 'SUBSIZE1' E Extra keyword 'TTYPE146' in a: 'SUBSIZE2' E Extra keyword 'TTYPE147' in a: 'FASTAXIS' E Extra keyword 'TTYPE148' in a: 'SLOWAXIS' E Extra keyword 'TTYPE149' in a: 'DETXCOR' E Extra keyword 'TTYPE15' in a: 'PWFSEET' E Extra keyword 'TTYPE150' in a: 'DETYCOR' E Extra keyword 'TTYPE151' in a: 'DETXSIZ' E Extra keyword 'TTYPE152' in a: 'DETYSIZ' E Extra keyword 'TTYPE153' in a: 'PATTTYPE' E Extra keyword 'TTYPE154' in a: 'PRIDTYPE' E Extra keyword 'TTYPE155' in a: 'PRIDTPTS' E Extra keyword 'TTYPE156' in a: 'PATT_NUM' E Extra keyword 'TTYPE157' in a: 'PATTSTRT' E Extra keyword 'TTYPE158' in a: 'NUMDTHPT' E Extra keyword 'TTYPE159' in a: 'PATTNPTS' E Extra keyword 'TTYPE16' in a: 'NWFSEST' E Extra keyword 'TTYPE160' in a: 'PATTSIZE' E Extra keyword 'TTYPE161' in a: 'SMGRDPAT' E Extra keyword 'TTYPE162' in a: 'SUBPXPTS' E Extra keyword 'TTYPE163' in a: 'SUBPXPAT' E Extra keyword 'TTYPE164' in a: 'SPEC_NUM' E Extra keyword 'TTYPE165' in a: 'SPECNSTP' E Extra keyword 'TTYPE166' in a: 'SPECSTEP' E Extra keyword 'TTYPE167' in a: 'SPCOFFST' E Extra keyword 'TTYPE168' in a: 'SPAT_NUM' E Extra keyword 'TTYPE169' in a: 'SPATNSTP' E Extra keyword 'TTYPE17' in a: 'ASNPOOL' E Extra keyword 'TTYPE170' in a: 'SPATSTEP' E Extra keyword 'TTYPE171' in a: 'SPTOFFST' E Extra keyword 'TTYPE172' in a: 'XOFFSET' E Extra keyword 'TTYPE173' in a: 'YOFFSET' E Extra keyword 'TTYPE174' in a: 'REFFRAME' E Extra keyword 'TTYPE175' in a: 'EPH_TYPE' E Extra keyword 'TTYPE176' in a: 'EPH_TIME' E Extra keyword 'TTYPE177' in a: 'JWST_X' E Extra keyword 'TTYPE178' in a: 'JWST_Y' E Extra keyword 'TTYPE179' in a: 'JWST_Z' E Extra keyword 'TTYPE18' in a: 'ASNTABLE' E Extra keyword 'TTYPE180' in a: 'JWST_DX' E Extra keyword 'TTYPE181' in a: 'JWST_DY' E Extra keyword 'TTYPE182' in a: 'JWST_DZ' E Extra keyword 'TTYPE183' in a: 'APERNAME' E Extra keyword 'TTYPE184' in a: 'PPS_APER' E Extra keyword 'TTYPE185' in a: 'PA_APER' E Extra keyword 'TTYPE186' in a: 'VA_RA' E Extra keyword 'TTYPE187' in a: 'VA_DEC' E Extra keyword 'TTYPE188' in a: 'VA_SCALE' E Extra keyword 'TTYPE189' in a: 'BARTDELT' E Extra keyword 'TTYPE19' in a: 'TITLE' E Extra keyword 'TTYPE190' in a: 'BSTRTIME' E Extra keyword 'TTYPE191' in a: 'BENDTIME' E Extra keyword 'TTYPE192' in a: 'BMIDTIME' E Extra keyword 'TTYPE193' in a: 'HELIDELT' E Extra keyword 'TTYPE194' in a: 'HSTRTIME' E Extra keyword 'TTYPE195' in a: 'HENDTIME' E Extra keyword 'TTYPE196' in a: 'HMIDTIME' E Extra keyword 'TTYPE197' in a: 'FAM_LA1' E Extra keyword 'TTYPE198' in a: 'FASTEP1' E Extra keyword 'TTYPE199' in a: 'FAUNIT1' E Extra keyword 'TTYPE2' in a: 'ORIGIN' E Extra keyword 'TTYPE20' in a: 'PI_NAME' E Extra keyword 'TTYPE200' in a: 'FAPHASE1' E Extra keyword 'TTYPE201' in a: 'FA1VALUE' E Extra keyword 'TTYPE202' in a: 'FAM_LA2' E Extra keyword 'TTYPE203' in a: 'FASTEP2' E Extra keyword 'TTYPE204' in a: 'FAUNIT2' E Extra keyword 'TTYPE205' in a: 'FAPHASE2' E Extra keyword 'TTYPE206' in a: 'FA2VALUE' E Extra keyword 'TTYPE207' in a: 'FAM_LA3' E Extra keyword 'TTYPE208' in a: 'FASTEP3' E Extra keyword 'TTYPE209' in a: 'FAUNIT3' E Extra keyword 'TTYPE21' in a: 'CATEGORY' E Extra keyword 'TTYPE210' in a: 'FAPHASE3' E Extra keyword 'TTYPE211' in a: 'FA3VALUE' E Extra keyword 'TTYPE212' in a: 'RMA_POS' E Extra keyword 'TTYPE213' in a: 'FCSRLPOS' E Extra keyword 'TTYPE214' in a: 'GS_ORDER' E Extra keyword 'TTYPE215' in a: 'GSSTRTTM' E Extra keyword 'TTYPE216' in a: 'GSENDTIM' E Extra keyword 'TTYPE217' in a: 'GDSTARID' E Extra keyword 'TTYPE218' in a: 'GS_RA' E Extra keyword 'TTYPE219' in a: 'GS_DEC' E Extra keyword 'TTYPE22' in a: 'SUBCAT' E Extra keyword 'TTYPE220' in a: 'GS_URA' E Extra keyword 'TTYPE221' in a: 'GS_UDEC' E Extra keyword 'TTYPE222' in a: 'GS_MAG' E Extra keyword 'TTYPE223' in a: 'GS_UMAG' E Extra keyword 'TTYPE224' in a: 'PCS_MODE' E Extra keyword 'TTYPE225' in a: 'VISITEND' E Extra keyword 'TTYPE226' in a: 'GSACSTAT' E Extra keyword 'TTYPE227' in a: 'GSCENTX' E Extra keyword 'TTYPE228' in a: 'GSCENTY' E Extra keyword 'TTYPE229' in a: 'GS_EPOCH' E Extra keyword 'TTYPE23' in a: 'SCICAT' E Extra keyword 'TTYPE230' in a: 'GS_MURA' E Extra keyword 'TTYPE231' in a: 'GS_MUDEC' E Extra keyword 'TTYPE232' in a: 'GS_PARA' E Extra keyword 'TTYPE233' in a: 'CRDS_VER' E Extra keyword 'TTYPE234' in a: 'CRDS_CTX' E Extra keyword 'TTYPE235' in a: 'R_AREA' E Extra keyword 'TTYPE236' in a: 'R_MSAOPE' E Extra keyword 'TTYPE237' in a: 'R_BARSHA' E Extra keyword 'TTYPE238' in a: 'R_CAMERA' E Extra keyword 'TTYPE239' in a: 'R_COLLIM' E Extra keyword 'TTYPE24' in a: 'CONT_ID' E Extra keyword 'TTYPE240' in a: 'R_CUBPAR' E Extra keyword 'TTYPE241' in a: 'R_DARK' E Extra keyword 'TTYPE242' in a: 'R_DISPER' E Extra keyword 'TTYPE243' in a: 'R_DISTOR' E Extra keyword 'TTYPE244' in a: 'R_DRZPAR' E Extra keyword 'TTYPE245' in a: 'R_EXTR1D' E Extra keyword 'TTYPE246' in a: 'R_FILOFF' E Extra keyword 'TTYPE247' in a: 'R_FLAT' E Extra keyword 'TTYPE248' in a: 'R_DFLAT' E Extra keyword 'TTYPE249' in a: 'R_FFLAT' E Extra keyword 'TTYPE25' in a: 'DATE-OBS' E Extra keyword 'TTYPE250' in a: 'R_SFLAT' E Extra keyword 'TTYPE251' in a: 'R_FORE' E Extra keyword 'TTYPE252' in a: 'R_FPA' E Extra keyword 'TTYPE253' in a: 'R_FRINGE' E Extra keyword 'TTYPE254' in a: 'R_GAIN' E Extra keyword 'TTYPE255' in a: 'R_IFUFOR' E Extra keyword 'TTYPE256' in a: 'R_IFUPOS' E Extra keyword 'TTYPE257' in a: 'R_IFUSLI' E Extra keyword 'TTYPE258' in a: 'R_IPC' E Extra keyword 'TTYPE259' in a: 'R_LASTFR' E Extra keyword 'TTYPE26' in a: 'TIME-OBS' E Extra keyword 'TTYPE260' in a: 'R_LINEAR' E Extra keyword 'TTYPE261' in a: 'R_MASK' E Extra keyword 'TTYPE262' in a: 'R_MSA' E Extra keyword 'TTYPE263' in a: 'R_OTE' E Extra keyword 'TTYPE264' in a: 'R_PTHLOS' E Extra keyword 'TTYPE265' in a: 'R_PERSAT' E Extra keyword 'TTYPE266' in a: 'R_PHOTOM' E Extra keyword 'TTYPE267' in a: 'R_PSFMAS' E Extra keyword 'TTYPE268' in a: 'R_READNO' E Extra keyword 'TTYPE269' in a: 'R_REFPIX' E Extra keyword 'TTYPE27' in a: 'DATE-BEG' E Extra keyword 'TTYPE270' in a: 'R_REGION' E Extra keyword 'TTYPE271' in a: 'R_RESAMP' E Extra keyword 'TTYPE272' in a: 'R_RESOL' E Extra keyword 'TTYPE273' in a: 'R_RESET' E Extra keyword 'TTYPE274' in a: 'R_RSCD' E Extra keyword 'TTYPE275' in a: 'R_SATURA' E Extra keyword 'TTYPE276' in a: 'R_SPCWCS' E Extra keyword 'TTYPE277' in a: 'R_STRAY' E Extra keyword 'TTYPE278' in a: 'R_SUPERB' E Extra keyword 'TTYPE279' in a: 'R_THRPUT' E Extra keyword 'TTYPE28' in a: 'DATE-END' E Extra keyword 'TTYPE280' in a: 'R_TRPDEN' E Extra keyword 'TTYPE281' in a: 'R_TRPPAR' E Extra keyword 'TTYPE282' in a: 'R_TSPHOT' E Extra keyword 'TTYPE283' in a: 'R_V2V3' E Extra keyword 'TTYPE284' in a: 'R_WAVCOR' E Extra keyword 'TTYPE285' in a: 'R_WAVRAN' E Extra keyword 'TTYPE286' in a: 'S_PSFALI' E Extra keyword 'TTYPE287' in a: 'S_AMIANA' E Extra keyword 'TTYPE288' in a: 'S_AMIAVG' E Extra keyword 'TTYPE289' in a: 'S_AMINOR' E Extra keyword 'TTYPE29' in a: 'OBS_ID' E Extra keyword 'TTYPE290' in a: 'S_WCS' E Extra keyword 'TTYPE291' in a: 'S_MTWCS' E Extra keyword 'TTYPE292' in a: 'S_BKDSUB' E Extra keyword 'TTYPE293' in a: 'S_BARSHA' E Extra keyword 'TTYPE294' in a: 'S_COMB1D' E Extra keyword 'TTYPE295' in a: 'S_IFUCUB' E Extra keyword 'TTYPE296' in a: 'S_DARK' E Extra keyword 'TTYPE297' in a: 'S_DQINIT' E Extra keyword 'TTYPE298' in a: 'S_TELEMI' E Extra keyword 'TTYPE299' in a: 'S_ERRINI' E Extra keyword 'TTYPE3' in a: 'TIMESYS' E Extra keyword 'TTYPE30' in a: 'VISIT_ID' E Extra keyword 'TTYPE300' in a: 'S_EXTR1D' E Extra keyword 'TTYPE301' in a: 'S_EXTR2D' E Extra keyword 'TTYPE302' in a: 'S_FRSTFR' E Extra keyword 'TTYPE303' in a: 'S_FLAT' E Extra keyword 'TTYPE304' in a: 'S_FRINGE' E Extra keyword 'TTYPE305' in a: 'S_GANSCL' E Extra keyword 'TTYPE306' in a: 'S_GRPSCL' E Extra keyword 'TTYPE307' in a: 'S_GUICDS' E Extra keyword 'TTYPE308' in a: 'S_IMPRNT' E Extra keyword 'TTYPE309' in a: 'S_IPC' E Extra keyword 'TTYPE31' in a: 'PROGRAM' E Extra keyword 'TTYPE310' in a: 'S_JUMP' E Extra keyword 'TTYPE311' in a: 'S_KLIP' E Extra keyword 'TTYPE312' in a: 'S_LASTFR' E Extra keyword 'TTYPE313' in a: 'S_LINEAR' E Extra keyword 'TTYPE314' in a: 'S_MSBSUB' E Extra keyword 'TTYPE315' in a: 'S_MRSMAT' E Extra keyword 'TTYPE316' in a: 'S_MSAFLG' E Extra keyword 'TTYPE317' in a: 'S_OUTLIR' E Extra keyword 'TTYPE318' in a: 'S_PTHLOS' E Extra keyword 'TTYPE319' in a: 'S_PERSIS' E Extra keyword 'TTYPE32' in a: 'OBSERVTN' E Extra keyword 'TTYPE320' in a: 'S_PHOTOM' E Extra keyword 'TTYPE321' in a: 'S_RAMP' E Extra keyword 'TTYPE322' in a: 'S_REFPIX' E Extra keyword 'TTYPE323' in a: 'S_RESAMP' E Extra keyword 'TTYPE324' in a: 'S_RESET' E Extra keyword 'TTYPE325' in a: 'S_RSCD' E Extra keyword 'TTYPE326' in a: 'S_SATURA' E Extra keyword 'TTYPE327' in a: 'S_SKYMAT' E Extra keyword 'TTYPE328' in a: 'S_SRCCAT' E Extra keyword 'TTYPE329' in a: 'S_SRCTYP' E Extra keyword 'TTYPE33' in a: 'VISIT' E Extra keyword 'TTYPE330' in a: 'S_PSFSTK' E Extra keyword 'TTYPE331' in a: 'S_STRAY' E Extra keyword 'TTYPE332' in a: 'S_SUPERB' E Extra keyword 'TTYPE333' in a: 'S_TSPHOT' E Extra keyword 'TTYPE334' in a: 'S_TWKREG' E Extra keyword 'TTYPE335' in a: 'S_WAVCOR' E Extra keyword 'TTYPE336' in a: 'S_WFSCOM' E Extra keyword 'TTYPE337' in a: 'S_WHTLIT' E Extra keyword 'TTYPE338' in a: 'BKGLEVEL' E Extra keyword 'TTYPE339' in a: 'BKGSUB' E Extra keyword 'TTYPE34' in a: 'VISITGRP' E Extra keyword 'TTYPE340' in a: 'BUNIT' E Extra keyword 'TTYPE341' in a: 'PHOTMJSR' E Extra keyword 'TTYPE342' in a: 'PHOTUJA2' E Extra keyword 'TTYPE343' in a: 'PIXAR_SR' E Extra keyword 'TTYPE344' in a: 'PIXAR_A2' E Extra keyword 'TTYPE345' in a: 'RADESYS' E Extra keyword 'TTYPE346' in a: 'RA_V1' E Extra keyword 'TTYPE347' in a: 'DEC_V1' E Extra keyword 'TTYPE348' in a: 'PA_V3' E Extra keyword 'TTYPE349' in a: 'WCSAXES' E Extra keyword 'TTYPE35' in a: 'SEQ_ID' E Extra keyword 'TTYPE350' in a: 'CRPIX1' E Extra keyword 'TTYPE351' in a: 'CRPIX2' E Extra keyword 'TTYPE352' in a: 'CRPIX3' E Extra keyword 'TTYPE353' in a: 'CRVAL1' E Extra keyword 'TTYPE354' in a: 'CRVAL2' E Extra keyword 'TTYPE355' in a: 'CRVAL3' E Extra keyword 'TTYPE356' in a: 'CTYPE1' E Extra keyword 'TTYPE357' in a: 'CTYPE2' E Extra keyword 'TTYPE358' in a: 'CTYPE3' E Extra keyword 'TTYPE359' in a: 'CUNIT1' E Extra keyword 'TTYPE36' in a: 'ACT_ID' E Extra keyword 'TTYPE360' in a: 'CUNIT2' E Extra keyword 'TTYPE361' in a: 'CUNIT3' E Extra keyword 'TTYPE362' in a: 'CDELT1' E Extra keyword 'TTYPE363' in a: 'CDELT2' E Extra keyword 'TTYPE364' in a: 'CDELT3' E Extra keyword 'TTYPE365' in a: 'PC1_1' E Extra keyword 'TTYPE366' in a: 'PC1_2' E Extra keyword 'TTYPE367' in a: 'PC1_3' E Extra keyword 'TTYPE368' in a: 'PC2_1' E Extra keyword 'TTYPE369' in a: 'PC2_2' E Extra keyword 'TTYPE37' in a: 'EXPOSURE' E Extra keyword 'TTYPE370' in a: 'PC2_3' E Extra keyword 'TTYPE371' in a: 'PC3_1' E Extra keyword 'TTYPE372' in a: 'PC3_2' E Extra keyword 'TTYPE373' in a: 'PC3_3' E Extra keyword 'TTYPE374' in a: 'CD1_1' E Extra keyword 'TTYPE375' in a: 'CD1_2' E Extra keyword 'TTYPE376' in a: 'CD2_1' E Extra keyword 'TTYPE377' in a: 'CD2_2' E Extra keyword 'TTYPE378' in a: 'S_REGION' E Extra keyword 'TTYPE379' in a: 'WAVSTART' E Extra keyword 'TTYPE38' in a: 'BKGDTARG' E Extra keyword 'TTYPE380' in a: 'WAVEND' E Extra keyword 'TTYPE381' in a: 'DISPAXIS' E Extra keyword 'TTYPE382' in a: 'SPORDER' E Extra keyword 'TTYPE383' in a: 'V2_REF' E Extra keyword 'TTYPE384' in a: 'V3_REF' E Extra keyword 'TTYPE385' in a: 'VPARITY' E Extra keyword 'TTYPE386' in a: 'V3I_YANG' E Extra keyword 'TTYPE387' in a: 'RA_REF' E Extra keyword 'TTYPE388' in a: 'DEC_REF' E Extra keyword 'TTYPE389' in a: 'ROLL_REF' E Extra keyword 'TTYPE39' in a: 'TEMPLATE' E Extra keyword 'TTYPE4' in a: 'FILENAME' E Extra keyword 'TTYPE40' in a: 'OBSLABEL' E Extra keyword 'TTYPE41' in a: 'ENG_QUAL' E Extra keyword 'TTYPE42' in a: 'ENGQLPTG' E Extra keyword 'TTYPE43' in a: 'VISITYPE' E Extra keyword 'TTYPE44' in a: 'VSTSTART' E Extra keyword 'TTYPE45' in a: 'VISITSTA' E Extra keyword 'TTYPE46' in a: 'NEXPOSUR' E Extra keyword 'TTYPE47' in a: 'INTARGET' E Extra keyword 'TTYPE48' in a: 'TARGOOPP' E Extra keyword 'TTYPE49' in a: 'TSOVISIT' E Extra keyword 'TTYPE5' in a: 'FILETYPE' E Extra keyword 'TTYPE50' in a: 'EXP_ONLY' E Extra keyword 'TTYPE51' in a: 'TARGPROP' E Extra keyword 'TTYPE52' in a: 'TARGNAME' E Extra keyword 'TTYPE53' in a: 'TARGTYPE' E Extra keyword 'TTYPE54' in a: 'TARG_RA' E Extra keyword 'TTYPE55' in a: 'TARG_DEC' E Extra keyword 'TTYPE56' in a: 'TARGURA' E Extra keyword 'TTYPE57' in a: 'TARGUDEC' E Extra keyword 'TTYPE58' in a: 'MU_RA' E Extra keyword 'TTYPE59' in a: 'MU_DEC' E Extra keyword 'TTYPE6' in a: 'SDP_VER' E Extra keyword 'TTYPE60' in a: 'MU_EPOCH' E Extra keyword 'TTYPE61' in a: 'PROP_RA' E Extra keyword 'TTYPE62' in a: 'PROP_DEC' E Extra keyword 'TTYPE63' in a: 'SRCTYAPT' E Extra keyword 'TTYPE64' in a: 'INSTRUME' E Extra keyword 'TTYPE65' in a: 'DETECTOR' E Extra keyword 'TTYPE66' in a: 'MODULE' E Extra keyword 'TTYPE67' in a: 'CHANNEL' E Extra keyword 'TTYPE68' in a: 'FILTER' E Extra keyword 'TTYPE69' in a: 'PUPIL' E Extra keyword 'TTYPE7' in a: 'PRD_VER' E Extra keyword 'TTYPE70' in a: 'PILIN' E Extra keyword 'TTYPE71' in a: 'GRATING' E Extra keyword 'TTYPE72' in a: 'BAND' E Extra keyword 'TTYPE73' in a: 'FXD_SLIT' E Extra keyword 'TTYPE74' in a: 'FOCUSPOS' E Extra keyword 'TTYPE75' in a: 'PREIMAGE' E Extra keyword 'TTYPE76' in a: 'CCCSTATE' E Extra keyword 'TTYPE77' in a: 'CORONMSK' E Extra keyword 'TTYPE78' in a: 'MSASTATE' E Extra keyword 'TTYPE79' in a: 'MSAMETFL' E Extra keyword 'TTYPE8' in a: 'CAL_VER' E Extra keyword 'TTYPE80' in a: 'MSAMETID' E Extra keyword 'TTYPE81' in a: 'MSACONID' E Extra keyword 'TTYPE82' in a: 'LAMP' E Extra keyword 'TTYPE83' in a: 'OPMODE' E Extra keyword 'TTYPE84' in a: 'GWA_XTIL' E Extra keyword 'TTYPE85' in a: 'GWA_YTIL' E Extra keyword 'TTYPE86' in a: 'GWA_XP_V' E Extra keyword 'TTYPE87' in a: 'GWA_YP_V' E Extra keyword 'TTYPE88' in a: 'GWA_PXAV' E Extra keyword 'TTYPE89' in a: 'GWA_PYAV' E Extra keyword 'TTYPE9' in a: 'CAL_VCS' E Extra keyword 'TTYPE90' in a: 'GWA_TILT' E Extra keyword 'TTYPE91' in a: 'FWCPOS' E Extra keyword 'TTYPE92' in a: 'PWCPOS' E Extra keyword 'TTYPE93' in a: 'EXPCOUNT' E Extra keyword 'TTYPE94' in a: 'EXPRIPAR' E Extra keyword 'TTYPE95' in a: 'EXP_TYPE' E Extra keyword 'TTYPE96' in a: 'EXPSTART' E Extra keyword 'TTYPE97' in a: 'MJD-BEG' E Extra keyword 'TTYPE98' in a: 'EXPMID' E Extra keyword 'TTYPE99' in a: 'MJD-AVG' E Keyword BITPIX has different values: E a> 8 E b> -32 E Keyword EXTNAME has different values: E a> HDRTAB E b> WHT E Keyword NAXIS2 has different values: E a> 4 E b> 2640 E Keyword NAXIS2 has different comments: E a> length of dimension 2 E Keyword PCOUNT has different comments: E a> number of group parameters E ? ------ E b> number of parameters E Keyword XTENSION has different values: E a> BINTABLE E b> IMAGE E Keyword XTENSION has different comments: E a> binary table extension E b> Image extension E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff628f7bf70>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:23: AssertionError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-06-04 04:46:19,513 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf 2021-06-04 04:46:19,544 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-06-04 04:46:20,427 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-06-04 04:46:20,639 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-06-04 04:46:20,639 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-06-04 04:46:20,641 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-06-04 04:46:20,642 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-06-04 04:46:20,643 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-06-04 04:46:20,643 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:46:20,644 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-06-04 04:46:20,645 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:46:20,645 - stpipe - INFO - OS: Linux 2021-06-04 04:46:20,819 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). 2021-06-04 04:46:20,825 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-06-04 04:46:21,043 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-06-04 04:46:21,051 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-06-04 04:46:21,052 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-06-04 04:46:21,053 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:46:21,054 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-06-04 04:46:22,200 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs running with args (<ModelContainer>,). 2021-06-04 04:46:22,201 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} 2021-06-04 04:46:22,290 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs done 2021-06-04 04:46:22,429 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-06-04 04:46:22,431 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-06-04 04:46:22,493 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:22,493 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:46:22.493126 2021-06-04 04:46:22,493 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:22,493 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-06-04 04:46:22,493 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-06-04 04:46:22,493 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-06-04 04:46:22,494 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:22,494 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-06-04 04:46:25,877 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 2021-06-04 04:46:25,877 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 2021-06-04 04:46:25,877 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 2021-06-04 04:46:25,877 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 2021-06-04 04:46:25,877 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:25,878 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: -0.014872107873521941 [not converted] 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:46:26.353806 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.860680 2021-06-04 04:46:26,354 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:26,360 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-06-04 04:46:26,508 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-06-04 04:46:26,510 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:46:26,513 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2021-06-04 04:46:30,010 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:46:36,932 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:46:44,129 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:46:51,002 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:46:55,656 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 4 images 2021-06-04 04:46:57,733 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-06-04 04:47:01,897 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-06-04 04:47:06,753 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-06-04 04:47:11,806 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-06-04 04:47:17,673 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-06-04 04:47:22,977 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits 2021-06-04 04:47:23,178 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits 2021-06-04 04:47:23,365 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits 2021-06-04 04:47:23,544 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits 2021-06-04 04:47:23,545 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:47:23,794 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-06-04 04:47:23,795 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:47:23,813 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-06-04 04:47:23,954 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for mt_assoc 2021-06-04 04:47:27,521 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:47:32,976 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:47:38,287 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:47:43,446 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:47:45,789 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 2021-06-04 04:47:46,229 - stpipe.Image3Pipeline.resample - INFO - Saved model in mt_assoc_i2d.fits 2021-06-04 04:47:46,229 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-06-04 04:47:46,468 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). 2021-06-04 04:47:46,469 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-06-04 04:47:46,486 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-06-04 04:47:46,495 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-06-04 04:47:46,495 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-06-04 04:47:46,495 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NRCBLONG 2021-06-04 04:47:46,496 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F250M 2021-06-04 04:47:46,496 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-06-04 04:47:46,496 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-06-04 04:47:46,535 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 2.14887 2021-06-04 04:47:49,969 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 524 sources 2021-06-04 04:47:54,560 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: mt_assoc_cat.ecsv 2021-06-04 04:47:54,662 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in mt_assoc_segm.fits 2021-06-04 04:47:54,663 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: mt_assoc_segm.fits 2021-06-04 04:47:54,664 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2021-06-04 04:47:54,665 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:367 Step assign_mtwcs running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:371 Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:470 Step assign_mtwcs done INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:46:22.493126 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:46:22.493126 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:46:26.353806 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:46:26.353806 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.860680 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.860680 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 4 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:406 Model size 25.6M available system memory 119.0G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:406 Model size 25.6M available system memory 119.0G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2263955 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2263955 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2539121 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2539121 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2479891 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2479891 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2419310 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2419310 INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:68 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:406 Model size 25.6M available system memory 117.7G DEBUG stpipe.Image3Pipeline.resample:util.py:406 Model size 25.6M available system memory 117.7G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for mt_assoc INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for mt_assoc DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:step.py:928 Saved model in mt_assoc_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:367 Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:371 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 524 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:120 Wrote source catalog: mt_assoc_cat.ecsv DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:step.py:928 Saved model in mt_assoc_segm.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:126 Wrote segmentation map: mt_assoc_segm.fits INFO stpipe.Image3Pipeline.source_catalog:step.py:470 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:470 Step Image3Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187931520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187931520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187931520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187931520 ______ test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] _______ input_file = 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update > model.write(rtdata.input) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:46: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:1063: in write self.save(path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff6290871c0> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...t', '>f8'), ('mt_z_jwst', '>f8'), ('mt_jwst_distance', '>f8'), ('mt_sun_distance', '>f8'), ('phase_angle', '>f8')]))},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...64'}, {'name': 'int_mid_BJD_TDB', 'datatype': 'float64'}, {'name': 'int_end_BJD_TDB', 'datatype': 'float64'}])]))]))])} error = <ValidationError: "4 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 4 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 4 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-06-04 04:47:58,327 - stpipe - INFO - Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:set_telescope_pointing.py:237 Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 INFO stpipe:set_telescope_pointing.py:237 Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 ______________ test_nircam_image_moving_target_kwds[no_mt_table] _______________ input_file = 'jw00634_nrcblong_no_mtt_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update > model.write(rtdata.input) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:46: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:1063: in write self.save(path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff629096130> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...41 38.878964850', 'v2_ref': -89.596514, 'v3_ref': -491.474153, 'v3yangle': 0.00805772, 'vparity': -1, 'wcsaxes': 2}}},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...64'}, {'name': 'int_mid_BJD_TDB', 'datatype': 'float64'}, {'name': 'int_end_BJD_TDB', 'datatype': 'float64'}])]))]))])} error = <ValidationError: "4 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 4 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 4 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-06-04 04:47:59,255 - stpipe - INFO - Moving target position table not found in the file ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:set_telescope_pointing.py:241 Moving target position table not found in the file INFO stpipe:set_telescope_pointing.py:241 Moving target position table not found in the file _____________ test_nircam_image_moving_target_kwds[with_mt_table] ______________ input_file = 'jw00634_nrcblong_mttest_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update > model.write(rtdata.input) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:46: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:1063: in write self.save(path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff627879d00> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...t', '>f8'), ('mt_z_jwst', '>f8'), ('mt_jwst_distance', '>f8'), ('mt_sun_distance', '>f8'), ('phase_angle', '>f8')]))},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...64'}, {'name': 'int_mid_BJD_TDB', 'datatype': 'float64'}, {'name': 'int_end_BJD_TDB', 'datatype': 'float64'}])]))]))])} error = <ValidationError: "4 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 4 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 4 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-06-04 04:48:00,890 - stpipe - INFO - Moving target RA and Dec updated. ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:set_telescope_pointing.py:244 Moving target RA and Dec updated. INFO stpipe:set_telescope_pointing.py:244 Moving target RA and Dec updated. ___________________________ test_nircam_setpointing ____________________________ _jail = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_setpointing(_jail, rtdata, fitsdiff_default_kwargs): """ Regression test of the set_telescope_pointing script on a level-1b NIRCam file. """ # Get SIAF PRD database file siaf_path = rtdata.get_data("common/prd.db") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits") # The add_wcs function overwrites its input rtdata.output = rtdata.input # Call the WCS routine, using the ENGDB_Service try: > add_wcs(rtdata.input, siaf_path=siaf_path) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:91: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/lib/set_telescope_pointing.py:213: in add_wcs model.save(filename) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff629877e80> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...'siaf_yref_sci': 130.0, 'ra_ref': 98.81825770661473, 'dec_ref': -66.83269796058875, 'roll_ref': 143.25260098398002}}},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...64'}, {'name': 'int_mid_BJD_TDB', 'datatype': 'float64'}, {'name': 'int_end_BJD_TDB', 'datatype': 'float64'}])]))]))])} error = <ValidationError: "0 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-06-04 04:48:05,849 - stpipe - INFO - Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits 2021-06-04 04:48:05,927 - stpipe - INFO - Updating WCS for aperture NRCA5_GRISM256_F444W 2021-06-04 04:48:05,927 - stpipe - INFO - Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro 2021-06-04 04:48:05,927 - stpipe - INFO - Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 2021-06-04 04:48:05,928 - stpipe - INFO - loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro 2021-06-04 04:48:05,929 - stpipe - INFO - TSO exposure: 2021-06-04 04:48:05,929 - stpipe - INFO - setting xref_sci to 769.0 2021-06-04 04:48:05,930 - stpipe - INFO - setting yref_sci to 130.0 2021-06-04 04:48:05,930 - stpipe - INFO - Updating wcs from telemetry. 2021-06-04 04:48:05,930 - stpipe - INFO - Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 2021-06-04 04:48:05,930 - stpipe - INFO - Telemetry search tolerance = 60 2021-06-04 04:48:05,930 - stpipe - INFO - Reduction function = <function pointing_from_average at 0x7ff62add5c10> 2021-06-04 04:48:06,460 - stpipe - INFO - Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ 2021-06-04 04:48:07,022 - stpipe - INFO - Reduced set of pointings: 2021-06-04 04:48:07,022 - stpipe - INFO - Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-06-04 04:48:07,023 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-06-04 04:48:07,023 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-06-04 04:48:07,023 - stpipe - INFO - Successful read of engineering quaternions: 2021-06-04 04:48:07,024 - stpipe - INFO - Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-06-04 04:48:07,024 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-06-04 04:48:07,024 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-06-04 04:48:07,025 - stpipe - INFO - Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. 2021-06-04 04:48:07,025 - stpipe - INFO - Setting ENGQLPTG keyword to CALCULATED 2021-06-04 04:48:07,025 - stpipe - INFO - Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) 2021-06-04 04:48:07,025 - stpipe - INFO - V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) 2021-06-04 04:48:07,028 - stpipe - INFO - Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) 2021-06-04 04:48:07,030 - stpipe - INFO - Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7ff62add5c10> INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7ff62add5c10> DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 298544 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 298544 INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) INFO stpipe:util.py:937 Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 INFO stpipe:util.py:937 Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 ___________________________ test_nircam_setpointing ____________________________ _jail = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes..., 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_setpointing(_jail, rtdata, fitsdiff_default_kwargs): """ Regression test of the set_telescope_pointing script on a level-1b NIRCam TSO imaging file. """ # Get SIAF PRD database file siaf_path = rtdata.get_data("common/prd.db") rtdata.get_data("nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits") # The add_wcs function overwrites its input, so output = input rtdata.output = rtdata.input # Call the WCS routine, using the ENGDB_Service try: add_wcs(rtdata.input, siaf_path=siaf_path) except ValueError: pytest.skip('Engineering Database not available.') rtdata.get_truth("truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits") fitsdiff_default_kwargs['rtol'] = 1e-6 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/truth/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-06, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 153 E b: 152 E Inconsistent duplicates of keyword '' : E Occurs 13 time(s) in a, 12 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword ENGQLPTG has different values: E a> CALCULATED E b> CALCULATED_ORIGINAL E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 55 E b: 56 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E Keyword EPH_TIME has different comments: E b> UTC time of position and velocity vectors in ep E Keyword EPH_TYPE has different comments: E b> Definitive or Predicted E Keyword JWST_DX has different comments: E b> [km/s] barycentric JWST X velocity at MJD_AVG E Keyword JWST_DY has different comments: E b> [km/s] barycentric JWST Y velocity at MJD_AVG E Keyword JWST_DZ has different comments: E b> [km/s] barycentric JWST Z velocity at MJD_AVG E Keyword JWST_X has different comments: E b> [km] barycentric JWST X coordinate at MJD_AVG E Keyword JWST_Y has different comments: E b> [km] barycentric JWST Y coordinate at MJD_AVG E Keyword JWST_Z has different comments: E b> [km] barycentric JWST Z coordinate at MJD_AVG E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6277b3670>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:87: AssertionError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-06-04 04:48:11,299 - stpipe - INFO - Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits 2021-06-04 04:48:11,384 - stpipe - INFO - Updating WCS for aperture NRCB1_SUB64P 2021-06-04 04:48:11,384 - stpipe - INFO - Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro 2021-06-04 04:48:11,384 - stpipe - INFO - Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 2021-06-04 04:48:11,385 - stpipe - INFO - loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro 2021-06-04 04:48:11,386 - stpipe - INFO - Setting basic FITS WCS keywords for imaging 2021-06-04 04:48:11,389 - stpipe - INFO - TSO exposure: 2021-06-04 04:48:11,389 - stpipe - INFO - setting xref_sci to 32.5 2021-06-04 04:48:11,389 - stpipe - INFO - setting yref_sci to 32.5 2021-06-04 04:48:11,390 - stpipe - INFO - Updating wcs from telemetry. 2021-06-04 04:48:11,390 - stpipe - INFO - Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 2021-06-04 04:48:11,390 - stpipe - INFO - Telemetry search tolerance = 60 2021-06-04 04:48:11,390 - stpipe - INFO - Reduction function = <function pointing_from_average at 0x7ff62add5c10> 2021-06-04 04:48:11,420 - stpipe - INFO - Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ 2021-06-04 04:48:11,752 - stpipe - INFO - Reduced set of pointings: 2021-06-04 04:48:11,752 - stpipe - INFO - Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-06-04 04:48:11,752 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-06-04 04:48:11,752 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-06-04 04:48:11,753 - stpipe - INFO - Successful read of engineering quaternions: 2021-06-04 04:48:11,753 - stpipe - INFO - Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-06-04 04:48:11,753 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-06-04 04:48:11,753 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-06-04 04:48:11,754 - stpipe - INFO - Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. 2021-06-04 04:48:11,755 - stpipe - INFO - Setting ENGQLPTG keyword to CALCULATED 2021-06-04 04:48:11,755 - stpipe - INFO - Aperture WCS info: WCSRef(ra=99.0135777003569, dec=-66.81781129632121, pa=143.57702860735037) 2021-06-04 04:48:11,755 - stpipe - INFO - V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) 2021-06-04 04:48:11,759 - stpipe - INFO - Vertices for aperture NRCB1_SUB64P: (-0.9783, 0.9785, 0.9782, -0.978, -0.9841, -0.978, 0.9842, 0.9782) 2021-06-04 04:48:11,762 - stpipe - INFO - Update S_REGION to POLYGON ICRS 99.012609926 -66.817752684 99.013723527 -66.817431316 99.014545464 -66.817869942 99.013432237 -66.818191239 2021-06-04 04:48:11,828 - stpipe - INFO - ...update completed ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCB1_SUB64P INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCB1_SUB64P INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1506 Setting basic FITS WCS keywords for imaging INFO stpipe:set_telescope_pointing.py:1506 Setting basic FITS WCS keywords for imaging INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7ff62add5c10> INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7ff62add5c10> DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 298544 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 298544 INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=99.0135777003569, dec=-66.81781129632121, pa=143.57702860735037) INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=99.0135777003569, dec=-66.81781129632121, pa=143.57702860735037) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCB1_SUB64P: (-0.9783, 0.9785, 0.9782, -0.978, -0.9841, -0.978, 0.9842, 0.9782) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCB1_SUB64P: (-0.9783, 0.9785, 0.9782, -0.978, -0.9841, -0.978, 0.9842, 0.9782) INFO stpipe:util.py:937 Update S_REGION to POLYGON ICRS 99.012609926 -66.817752684 99.013723527 -66.817431316 99.014545464 -66.817869942 99.013432237 -66.818191239 INFO stpipe:util.py:937 Update S_REGION to POLYGON ICRS 99.012609926 -66.817752684 99.013723527 -66.817431316 99.014545464 -66.817869942 99.013432237 -66.818191239 INFO stpipe:set_telescope_pointing.py:214 ...update completed INFO stpipe:set_telescope_pointing.py:214 ...update completed DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 192960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 192960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 192960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 192960 __________________________ test_nircam_wfsimage[cal1] __________________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632003002_03105_00001_nrca4_cal.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632003002_03105_00001_nrca4_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 261 E b: 260 E Inconsistent duplicates of keyword '' : E Occurs 49 time(s) in a, 48 times in (b) E Keyword [10] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [11] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [12] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [13] has different values: E a> Time information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [14] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Guide star information E Keyword [15] has different values: E a> Guide star information E b> Reference file information E Keyword [16] has different values: E a> Reference file information E b> CRDS parameters E Keyword [17] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [18] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [19] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [20] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [21] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [22] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [23] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [24] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [25] has different values: E a> Flat reference file information E b> DFlat reference file information E ? + E Keyword [26] has different values: E a> DFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [27] has different values: E a> FFlat reference file information E ? ^ E b> SFlat reference file information E ? ^ E Keyword [28] has different values: E a> SFlat reference file information E ? ^ -- E b> Nirspec FORE Model reference file information E ? ^^^^^^^^ ++++++++ E Keyword [29] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [30] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [31] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [32] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [34] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [35] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [36] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [37] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Nirspec OTE Model reference file information E b> Persistence saturation reference file information E Keyword [39] has different values: E a> Persistence saturation reference file information E b> Photometric reference file information E Keyword [40] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [41] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [42] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [43] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [44] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [45] has different values: E a> Superbias reference file information E ? ^^ ^^ ^^ E b> Trap density reference file information E ? ^^^ ++ ^^ ^^ E Keyword [46] has different values: E a> Trap density reference file information E ? ^ ^ --- E b> Trap parameters reference file information E ? ^^^^^ ^^^ E Keyword [47] has different values: E a> Trap parameters reference file information E b> Wavelength Range reference file information E Keyword [48] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6294ed490>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError ---------------------------- Captured stderr setup ----------------------------- 2021-06-04 04:48:14,665 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0001.asdf 2021-06-04 04:48:14,693 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:48:14,694 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:48:14,695 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:48:14,696 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:48:14,697 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:48:14,698 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:48:14,698 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:48:14,698 - stpipe - INFO - OS: Linux 2021-06-04 04:48:14,899 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image2_001_asn.json',). 2021-06-04 04:48:14,904 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:48:15,086 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00632003002_03105_00001_nrca4_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-06-04 04:48:15,098 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits'. 2021-06-04 04:48:15,099 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:48:15,100 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:48:15,100 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:48:15,100 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:48:15,100 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf'. 2021-06-04 04:48:15,102 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:48:15,102 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf'. 2021-06-04 04:48:15,103 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits'. 2021-06-04 04:48:15,104 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:48:15,104 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:48:15,105 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:48:15,105 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:48:15,105 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:48:15,105 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:48:15,105 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:48:15,105 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits'. 2021-06-04 04:48:15,106 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:48:15,107 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:48:15,107 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:48:15,107 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:48:15,107 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-06-04 04:48:15,107 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:48:15,121 - stpipe.Image2Pipeline - INFO - Processing product jw00632003002_03105_00001_nrca4 2021-06-04 04:48:15,121 - stpipe.Image2Pipeline - INFO - Working on input jw00632003002_03105_00001_nrca4_rate.fits ... 2021-06-04 04:48:15,396 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-06-04 04:48:15,397 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:48:15,601 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0. 2021-06-04 04:48:15,693 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 2021-06-04 04:48:15,694 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 2021-06-04 04:48:15,694 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:48:15,749 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:48:15,854 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-06-04 04:48:15,855 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:48:17,832 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:48:17,940 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-06-04 04:48:17,941 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} 2021-06-04 04:48:17,966 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits 2021-06-04 04:48:17,966 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits 2021-06-04 04:48:18,058 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:48:18,058 - stpipe.Image2Pipeline.photom - INFO - detector: NRCA4 2021-06-04 04:48:18,058 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:48:18,058 - stpipe.Image2Pipeline.photom - INFO - filter: F212N 2021-06-04 04:48:18,058 - stpipe.Image2Pipeline.photom - INFO - pupil: WLP8 2021-06-04 04:48:18,537 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:48:18,539 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 42.7118 2021-06-04 04:48:18,577 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:48:18,688 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-06-04 04:48:18,689 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:48:18,689 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:48:18,689 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:48:18,690 - stpipe.Image2Pipeline - INFO - Finished processing product jw00632003002_03105_00001_nrca4 2021-06-04 04:48:18,690 - stpipe.Image2Pipeline - INFO - Processing product jw00632003002_03105_00002_nrca4 2021-06-04 04:48:18,691 - stpipe.Image2Pipeline - INFO - Working on input jw00632003002_03105_00002_nrca4_rate.fits ... 2021-06-04 04:48:18,962 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-06-04 04:48:18,964 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:48:19,149 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0. 2021-06-04 04:48:19,224 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 2021-06-04 04:48:19,224 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 2021-06-04 04:48:19,224 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:48:19,277 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:48:19,399 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-06-04 04:48:19,400 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:48:19,800 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:48:19,925 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-06-04 04:48:19,926 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} 2021-06-04 04:48:19,953 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits 2021-06-04 04:48:19,953 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits 2021-06-04 04:48:20,053 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:48:20,053 - stpipe.Image2Pipeline.photom - INFO - detector: NRCA4 2021-06-04 04:48:20,053 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:48:20,053 - stpipe.Image2Pipeline.photom - INFO - filter: F212N 2021-06-04 04:48:20,054 - stpipe.Image2Pipeline.photom - INFO - pupil: WLP8 2021-06-04 04:48:20,101 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:48:20,102 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 42.7118 2021-06-04 04:48:20,136 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:48:20,250 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-06-04 04:48:20,251 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:48:20,251 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:48:20,251 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:48:20,252 - stpipe.Image2Pipeline - INFO - Finished processing product jw00632003002_03105_00002_nrca4 2021-06-04 04:48:20,252 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-06-04 04:48:20,474 - stpipe.Image2Pipeline - INFO - Saved model in jw00632003002_03105_00001_nrca4_cal.fits 2021-06-04 04:48:20,680 - stpipe.Image2Pipeline - INFO - Saved model in jw00632003002_03105_00002_nrca4_cal.fits 2021-06-04 04:48:20,680 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-06-04 04:48:21,110 - stpipe.WfsCombine - INFO - WfsCombineStep instance created. 2021-06-04 04:48:21,110 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:48:21,110 - stpipe - INFO - OS: Linux 2021-06-04 04:48:21,349 - stpipe.WfsCombine - INFO - Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json',). 2021-06-04 04:48:21,350 - stpipe.WfsCombine - INFO - Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': False} 2021-06-04 04:48:21,361 - stpipe.WfsCombine - INFO - Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json 2021-06-04 04:48:21,362 - stpipe.WfsCombine - INFO - The number of pairs of input files: 1 2021-06-04 04:48:21,570 - stpipe.WfsCombine - INFO - File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits 2021-06-04 04:48:21,570 - stpipe.WfsCombine - INFO - File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits 2021-06-04 04:48:21,570 - stpipe.WfsCombine - INFO - Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 2021-06-04 04:48:21,570 - stpipe.WfsCombine - INFO - do_refine: False 2021-06-04 04:48:21,784 - stpipe.WfsCombine - INFO - Final x,y offset in pixels: -3 -2 2021-06-04 04:48:22,466 - stpipe.WfsCombine - INFO - Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits 2021-06-04 04:48:22,467 - stpipe.WfsCombine - INFO - Step WfsCombine done 2021-06-04 04:48:22,849 - stpipe.WfsCombine - INFO - WfsCombineStep instance created. 2021-06-04 04:48:22,849 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:48:22,849 - stpipe - INFO - OS: Linux 2021-06-04 04:48:23,131 - stpipe.WfsCombine - INFO - Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json',). 2021-06-04 04:48:23,133 - stpipe.WfsCombine - INFO - Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': True} 2021-06-04 04:48:23,143 - stpipe.WfsCombine - INFO - Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json 2021-06-04 04:48:23,143 - stpipe.WfsCombine - INFO - The number of pairs of input files: 1 2021-06-04 04:48:23,308 - stpipe.WfsCombine - INFO - File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits 2021-06-04 04:48:23,308 - stpipe.WfsCombine - INFO - File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits 2021-06-04 04:48:23,309 - stpipe.WfsCombine - INFO - Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine 2021-06-04 04:48:23,309 - stpipe.WfsCombine - INFO - do_refine: True 2021-06-04 04:48:24,028 - stpipe.WfsCombine - INFO - Approximate centroid of image 1 PSF has x,y : 1695 1713 2021-06-04 04:48:24,567 - stpipe.WfsCombine - INFO - From the refined offsets calculation,the x,y changes in ofsets are: 2 0 2021-06-04 04:48:24,567 - stpipe.WfsCombine - INFO - Values for the refined offsets are, for x,y : -1 -2 2021-06-04 04:48:24,567 - stpipe.WfsCombine - INFO - Final x,y offset in pixels: -1 -2 2021-06-04 04:48:25,178 - stpipe.WfsCombine - INFO - Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits 2021-06-04 04:48:25,179 - stpipe.WfsCombine - INFO - Step WfsCombine done ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0001.asdf INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0001.asdf INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image2_001_asn.json',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image2Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image2Pipeline:container.py:214 Files accepted for processing jw00632003002_03105_00001_nrca4_rate.fits: DEBUG stpipe.Image2Pipeline:container.py:214 Files accepted for processing jw00632003002_03105_00001_nrca4_rate.fits: DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00632003002_03105_00001_nrca4_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product jw00632003002_03105_00001_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input jw00632003002_03105_00001_nrca4_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product jw00632003002_03105_00001_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product jw00632003002_03105_00002_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input jw00632003002_03105_00002_nrca4_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00002_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00002_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product jw00632003002_03105_00002_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.WfsCombine:step.py:321 WfsCombineStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.WfsCombine:step.py:367 Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json',). INFO stpipe.WfsCombine:step.py:371 Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': False} INFO stpipe.WfsCombine:wfs_combine_step.py:25 Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json INFO stpipe.WfsCombine:wfs_combine_step.py:26 The number of pairs of input files: 1 DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: False INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: False DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -3 -2 INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -3 -2 DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:step.py:928 Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits INFO stpipe.WfsCombine:step.py:470 Step WfsCombine done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.WfsCombine:step.py:321 WfsCombineStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.WfsCombine:step.py:367 Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json',). INFO stpipe.WfsCombine:step.py:371 Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': True} INFO stpipe.WfsCombine:wfs_combine_step.py:25 Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json INFO stpipe.WfsCombine:wfs_combine_step.py:26 The number of pairs of input files: 1 DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: True INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: True DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:159 Approximate centroid of image 1 PSF has x,y : 1695 1713 INFO stpipe.WfsCombine:wfs_combine.py:159 Approximate centroid of image 1 PSF has x,y : 1695 1713 INFO stpipe.WfsCombine:wfs_combine.py:187 From the refined offsets calculation,the x,y changes in ofsets are: 2 0 INFO stpipe.WfsCombine:wfs_combine.py:187 From the refined offsets calculation,the x,y changes in ofsets are: 2 0 INFO stpipe.WfsCombine:wfs_combine.py:195 Values for the refined offsets are, for x,y : -1 -2 INFO stpipe.WfsCombine:wfs_combine.py:195 Values for the refined offsets are, for x,y : -1 -2 INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -1 -2 INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -1 -2 DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:step.py:928 Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits INFO stpipe.WfsCombine:step.py:470 Step WfsCombine done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 __________________________ test_nircam_wfsimage[cal2] __________________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632003002_03105_00002_nrca4_cal.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632003002_03105_00002_nrca4_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 261 E b: 260 E Inconsistent duplicates of keyword '' : E Occurs 49 time(s) in a, 48 times in (b) E Keyword [10] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [11] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [12] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [13] has different values: E a> Time information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [14] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Guide star information E Keyword [15] has different values: E a> Guide star information E b> Reference file information E Keyword [16] has different values: E a> Reference file information E b> CRDS parameters E Keyword [17] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [18] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [19] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [20] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [21] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [22] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [23] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [24] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [25] has different values: E a> Flat reference file information E b> DFlat reference file information E ? + E Keyword [26] has different values: E a> DFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [27] has different values: E a> FFlat reference file information E ? ^ E b> SFlat reference file information E ? ^ E Keyword [28] has different values: E a> SFlat reference file information E ? ^ -- E b> Nirspec FORE Model reference file information E ? ^^^^^^^^ ++++++++ E Keyword [29] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [30] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [31] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [32] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [34] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [35] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [36] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [37] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Nirspec OTE Model reference file information E b> Persistence saturation reference file information E Keyword [39] has different values: E a> Persistence saturation reference file information E b> Photometric reference file information E Keyword [40] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [41] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [42] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [43] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [44] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [45] has different values: E a> Superbias reference file information E ? ^^ ^^ ^^ E b> Trap density reference file information E ? ^^^ ++ ^^ ^^ E Keyword [46] has different values: E a> Trap density reference file information E ? ^ ^ --- E b> Trap parameters reference file information E ? ^^^^^ ^^^ E Keyword [47] has different values: E a> Trap parameters reference file information E b> Wavelength Range reference file information E Keyword [48] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff62786c100>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 ________________________ test_nircam_wfsimage[wfscmb1] _________________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...remote': 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 252 E b: 241 E Extra keyword 'EPH_TIME' in a: 58627.68472222222 E Extra keyword 'EPH_TYPE' in a: 'Predicted' E Extra keyword 'JWST_DX' in a: 0.115259470846338 E Extra keyword 'JWST_DY' in a: -0.126774624565631 E Extra keyword 'JWST_DZ' in a: -0.11066111037635 E Extra keyword 'JWST_X' in a: -1265902.82496211 E Extra keyword 'JWST_Y' in a: -879964.120124739 E Extra keyword 'JWST_Z' in a: -192282.447187418 E Extra keyword 'NDITHPTS' in a: '2MINUS' E Extra keyword 'REFFRAME' in a: 'EME2000' E Inconsistent duplicates of keyword '' : E Occurs 49 time(s) in a, 48 times in (b) E Keyword [10] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [11] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [12] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [13] has different values: E a> Time information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [14] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Guide star information E Keyword [15] has different values: E a> Guide star information E b> Reference file information E Keyword [16] has different values: E a> Reference file information E b> CRDS parameters E Keyword [17] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [18] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [19] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [20] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [21] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [22] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [23] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [24] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [25] has different values: E a> Flat reference file information E b> DFlat reference file information E ? + E Keyword [26] has different values: E a> DFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [27] has different values: E a> FFlat reference file information E ? ^ E b> SFlat reference file information E ? ^ E Keyword [28] has different values: E a> SFlat reference file information E ? ^ -- E b> Nirspec FORE Model reference file information E ? ^^^^^^^^ ++++++++ E Keyword [29] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [30] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [31] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [32] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [34] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [35] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [36] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [37] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Nirspec OTE Model reference file information E b> Persistence saturation reference file information E Keyword [39] has different values: E a> Persistence saturation reference file information E b> Photometric reference file information E Keyword [40] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [41] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [42] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [43] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [44] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [45] has different values: E a> Superbias reference file information E ? ^^ ^^ ^^ E b> Trap density reference file information E ? ^^^ ++ ^^ ^^ E Keyword [46] has different values: E a> Trap density reference file information E ? ^ ^ --- E b> Trap parameters reference file information E ? ^^^^^ ^^^ E Keyword [47] has different values: E a> Trap parameters reference file information E b> Wavelength Range reference file information E Keyword [48] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6295a03a0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50391360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50391360 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50391360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50391360 ________________________ test_nircam_wfsimage[wfscmb2] _________________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...: 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 252 E b: 241 E Extra keyword 'EPH_TIME' in a: 58627.68472222222 E Extra keyword 'EPH_TYPE' in a: 'Predicted' E Extra keyword 'JWST_DX' in a: 0.115259470846338 E Extra keyword 'JWST_DY' in a: -0.126774624565631 E Extra keyword 'JWST_DZ' in a: -0.11066111037635 E Extra keyword 'JWST_X' in a: -1265902.82496211 E Extra keyword 'JWST_Y' in a: -879964.120124739 E Extra keyword 'JWST_Z' in a: -192282.447187418 E Extra keyword 'NDITHPTS' in a: '2MINUS' E Extra keyword 'REFFRAME' in a: 'EME2000' E Inconsistent duplicates of keyword '' : E Occurs 49 time(s) in a, 48 times in (b) E Keyword [10] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [11] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [12] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [13] has different values: E a> Time information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [14] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Guide star information E Keyword [15] has different values: E a> Guide star information E b> Reference file information E Keyword [16] has different values: E a> Reference file information E b> CRDS parameters E Keyword [17] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [18] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [19] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [20] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [21] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [22] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [23] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [24] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [25] has different values: E a> Flat reference file information E b> DFlat reference file information E ? + E Keyword [26] has different values: E a> DFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [27] has different values: E a> FFlat reference file information E ? ^ E b> SFlat reference file information E ? ^ E Keyword [28] has different values: E a> SFlat reference file information E ? ^ -- E b> Nirspec FORE Model reference file information E ? ^^^^^^^^ ++++++++ E Keyword [29] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [30] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [31] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [32] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [34] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [35] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [36] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [37] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Nirspec OTE Model reference file information E b> Persistence saturation reference file information E Keyword [39] has different values: E a> Persistence saturation reference file information E b> Photometric reference file information E Keyword [40] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [41] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [42] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [43] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [44] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [45] has different values: E a> Superbias reference file information E ? ^^ ^^ ^^ E b> Trap density reference file information E ? ^^^ ++ ^^ ^^ E Keyword [46] has different values: E a> Trap density reference file information E ? ^ ^ --- E b> Trap parameters reference file information E ? ^^^^^ ^^^ E Keyword [47] has different values: E a> Trap parameters reference file information E b> Wavelength Range reference file information E Keyword [48] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff628afca60>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50391360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50391360 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50391360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50391360 =============================== warnings summary =============================== miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/resample/resample_utils.py:153: RuntimeWarning: var_rnoise array not available. Setting drizzle weight map to 1 warnings.warn("var_rnoise array not available. Setting drizzle weight map to 1", miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py: 1 warning miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py: 9 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py: 1 warning miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py: 1 warning miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py: 2 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/config_parser.py:118: ResourceWarning: unclosed file <_io.BufferedReader name='config/calwebb_image2.cfg'> return ConfigObj(config_file, raise_errors=True) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:359: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits' mode='rb' closefd=True> gc.collect() miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py: 60 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py: 32 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/gwcs/wcs.py:1990: DeprecationWarning: Indexing a WCS.pipeline step is deprecated. Use the `frame` and `transform` attributes instead. warnings.warn("Indexing a WCS.pipeline step is deprecated. " miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/lib/nanfunctions.py:1113: RuntimeWarning: All-NaN slice encountered r, k = function_base._ureduce(a, func=_nanmedian, axis=axis, out=out, miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/source_catalog/source_catalog.py:645: AstropyDeprecationWarning: The source_properties function is deprecated and may be removed in a future version. Use `~photutils.segmentation.SourceCatalog` instead. source_props = source_properties(self.model.data.astype(float), miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/photutils/segmentation/properties.py:1894: AstropyDeprecationWarning: The SourceProperties class is deprecated and may be removed in a future version. Use `~photutils.segmentation.SourceCatalog` instead. sources_props.append(SourceProperties( miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/photutils/segmentation/properties.py:1902: AstropyDeprecationWarning: The LegacySourceCatalog class is deprecated and may be removed in a future version. Use `~photutils.segmentation.SourceCatalog` instead. return LegacySourceCatalog(sources_props, wcs=wcs) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/validate.py:34: ValidationWarning: While validating <ImageModel(329, 777) from jw00617082001_02102_00001_nrcb2_cal.fits> the following error occurred: 0 is not of type 'string' Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: OrderedDict([('title', 'Total number of points in primary dither pattern'), ('type', 'string'), ('fits_keyword', 'NDITHPTS')]) On instance['meta']['dither']['dither_points']: 0 warnings.warn(errmsg, ValidationWarning) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/validate.py:34: ValidationWarning: While validating dither_points the following error occurred: 0 is not of type 'string' Failed validating 'type' in schema: OrderedDict([('title', 'Total number of points in primary dither pattern'), ('type', 'string'), ('fits_keyword', 'NDITHPTS')]) On instance: 0 warnings.warn(errmsg, ValidationWarning) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/validate.py:34: ValidationWarning: While validating <ImageModel(329, 777) from jw00617-o082_t001_nircam_clear-f090w-sub320> the following error occurred: 0 is not of type 'string' Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: OrderedDict([('title', 'Total number of points in primary dither pattern'), ('type', 'string'), ('fits_keyword', 'NDITHPTS')]) On instance['meta']['dither']['dither_points']: 0 warnings.warn(errmsg, ValidationWarning) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/ipykernel/iostream.py:9: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses from imp import lock_held as import_lock_held -- Docs: https://docs.pytest.org/en/stable/warnings.html - generated html file: file:///data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw57azptk/regtest_report.html - =========================== short test summary info ============================ FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfsub] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-crfints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfalign] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfsub] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-crfints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00003-crfints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00004-crfints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00005-crfints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[psfstack] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[i2d] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[jump] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[rate] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[flat_field] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[cal] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[i2d] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_catalog FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_segmap FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[no_mt_table] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_setpointing FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_setpointing FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal2] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb1] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb2] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[no_mt_table] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[extract_2d] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[flat_field] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[o012_crfints] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[srctype] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[x1dints] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_x1dints ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_whtlt FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_setpointing ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[o006_crfints] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimage_stage3_phot = 29 failed, 8 passed, 404 deselected, 125 warnings, 16 errors in 583.17s (0:09:43) =
HTML(html_report)
Report generated on 04-Jun-2021 at 04:48:30 by pytest-html v3.1.1
| BUILD_ID | 82 |
| BUILD_NUMBER | 82 |
| BUILD_TAG | jenkins-Notebooks-jwst_validation_notebooks_spacetelescope-82 |
| BUILD_URL | https://plwishmaster.stsci.edu:8081/job/Notebooks/job/jwst_validation_notebooks_spacetelescope/82/ |
| EXECUTOR_NUMBER | 17 |
| GIT_BRANCH | origin/master |
| GIT_COMMIT | 000767fad942df44f8dafd578d86ffc4f8d0a6b5 |
| GIT_URL | https://github.com/spacetelescope/jwst_validation_notebooks |
| JENKINS_URL | https://plwishmaster.stsci.edu:8081/ |
| JOB_NAME | Notebooks/jwst_validation_notebooks_spacetelescope |
| NODE_NAME | jwcalibdev.stsci.edu |
| Packages | {"pluggy": "0.13.1", "py": "1.10.0", "pytest": "6.2.4"} |
| Platform | Linux-3.10.0-1160.25.1.el7.x86_64-x86_64-with-glibc2.10 |
| Plugins | {"asdf": "2.8.0", "ci-watson": "0.5", "forked": "1.3.0", "html": "3.1.1", "metadata": "1.11.0", "xdist": "2.2.1"} |
| Python | 3.8.10 |
| WORKSPACE | /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope |
37 tests ran in 582.24 seconds.
(Un)check the boxes to filter the results.
8 passed, 0 skipped, 29 failed, 12 errors, 0 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile::setup | 3.71 | |
|
rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0') @pytest.fixture() def run_image3_closedfile(rtdata, jail): """Run calwebb_image3 on NIRCam imaging with data that had a closed file issue.""" rtdata.get_asn("nircam/image/fail_short_image3_asn.json") collect_pipeline_cfgs("config") args = ["config/calwebb_image3.cfg", rtdata.input] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:84: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_image3.py:97: in process result = self.resample(input_models) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:451: in run self.save_model(result, idx=idx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:919: in save_model output_path = model.save( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff62752cfd0> args = ({'data': array([[ 0. , 0. , 0. , ..., 0. , 0. , 0. ], [... ..., [0, 0, 2, ..., 0, 0, 0], [0, 0, 0, ..., 0, 0, 0], [0, 0, 0, ..., 0, 0, 0]], dtype=int32)},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...('name', 'DEC_REF'), ('datatype', 'float64')]), OrderedDict([('name', 'ROLL_REF'), ('datatype', 'float64')])])]))]))])} error = <ValidationError: "0 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationError -----------------------------Captured stdout setup------------------------------ ---------------------------------------------------------------------- ERROR RUNNING STEP 'Image3Pipeline': 0 is not of type 'string' Failed validating 'type' in schema['pro perties']['meta']['properties']['dither']['properties']['dither_po ints']: OrderedDict([('title', 'Total number of points in primary dither pattern'), ('type', 'string'), ('fits_keyword', 'NDITHPTS')]) On instance['meta']['dither']['dither_points']: 0 ---------------------------------------------------------------------- -----------------------------Captured stderr setup------------------------------ 2021-06-04 04:46:12,872 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf 2021-06-04 04:46:12,886 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-06-04 04:46:13,206 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-06-04 04:46:13,287 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-06-04 04:46:13,288 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-06-04 04:46:13,289 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-06-04 04:46:13,290 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-06-04 04:46:13,291 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-06-04 04:46:13,292 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:46:13,293 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-06-04 04:46:13,293 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:46:13,293 - stpipe - INFO - OS: Linux 2021-06-04 04:46:13,432 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). 2021-06-04 04:46:13,437 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-06-04 04:46:13,528 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-06-04 04:46:13,533 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-06-04 04:46:13,534 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-06-04 04:46:13,535 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:46:13,536 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-06-04 04:46:13,814 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-06-04 04:46:13,815 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-06-04 04:46:13,833 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,833 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:46:13.833554 2021-06-04 04:46:13,833 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,833 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-06-04 04:46:13,833 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-06-04 04:46:13,833 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - WARNING - * Group ID=1: Unable to compute sky value 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,834 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - WARNING - Unable to compute "global" sky value 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: None [not converted] 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:46:13.835593 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002039 2021-06-04 04:46:13,835 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:13,837 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-06-04 04:46:13,942 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-06-04 04:46:13,943 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:46:13,957 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-06-04 04:46:14,064 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 2021-06-04 04:46:14,796 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-06-04 04:46:15,020 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-06-04 04:46:15,088 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:46:13.833554 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:46:13.833554 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:396 * Group ID=1: Unable to compute sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:396 * Group ID=1: Unable to compute sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:361 Unable to compute "global" sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:361 Unable to compute "global" sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:46:13.835593 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:46:13.835593 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002039 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002039 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:68 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:406 Model size 998.6K available system memory 119.0G DEBUG stpipe.Image3Pipeline.resample:util.py:406 Model size 998.6K available system memory 119.0G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints]::setup | 4.18 | |
|
jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError -----------------------------Captured stdout setup------------------------------ ---------------------------------------------------------------------- ERROR RUNNING STEP 'Spec2Pipeline': Traceback (most recent call last): File "/data1/jenkins/workspac e/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/en vs/jwst_validation_notebooks/lib/python3.8/site- packages/jwst/pipeline/calwebb_spec2.py", line 112, in process result = self.process_exposure_product( File "/data1/jenkins/wor kspace/Notebooks/jwst_validation_notebooks_spacetelescope/minicond a3/envs/jwst_validation_notebooks/lib/python3.8/site- packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product calibrated = self._process_grism(calibrated) File "/data1/jenkins/workspace/N otebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/ jwst_validation_notebooks/lib/python3.8/site- packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism calibrated = self.flat_field(data) File "/dat a1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetele scope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site -packages/stpipe/step.py", line 451, in run self.save_model(result, idx=idx) File "/data1/jenkins/workspace/ Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs /jwst_validation_notebooks/lib/python3.8/site- packages/stpipe/step.py", line 919, in save_model output_path = model.save( File "/data1/jenkins/workspace/Notebooks/jwst_vali dation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_no tebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save self.to_fits(output_path, *args, **kwargs) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks _spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/pyth on3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: File "/data1/jenkins/workspace/Notebooks/jw st_validation_notebooks_spacetelescope/miniconda3/envs/jwst_valida tion_notebooks/lib/python3.8/site- packages/stdatamodels/fits_support.py", line 395, in to_fits _save_from_schema(hdulist, tree, schema) File "/data1/jenkins/wo rkspace/Notebooks/jwst_validation_notebooks_spacetelescope/minicon da3/envs/jwst_validation_notebooks/lib/python3.8/site- packages/stdatamodels/fits_support.py", line 352, in _save_from_schema validator.validate(tree, _schema=schema) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks _spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/pyth on3.8/site-packages/jsonschema/validators.py", line 353, in validate raise error jsonschema.exceptions.ValidationError: 0 is not of type 'string' Failed validating 'type' in schema['prope rties']['meta']['properties']['dither']['properties']['dither_poin ts']: OrderedDict([('title', 'Total number of points in primary dither pattern'), ('type', 'string'), ('fits_keyword', 'NDITHPTS')]) On instance['meta']['dither']['dither_points']: 0 ---------------------------------------------------------------------- -----------------------------Captured stderr setup------------------------------ 2021-06-04 04:48:01,696 - stpipe - INFO - PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-spec2pipeline_0001.asdf 2021-06-04 04:48:01,745 - stpipe.Spec2Pipeline - INFO - Spec2Pipeline instance created. 2021-06-04 04:48:01,746 - stpipe.Spec2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:48:01,747 - stpipe.Spec2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:48:01,748 - stpipe.Spec2Pipeline.imprint_subtract - INFO - ImprintStep instance created. 2021-06-04 04:48:01,748 - stpipe.Spec2Pipeline.msa_flagging - INFO - MSAFlagOpenStep instance created. 2021-06-04 04:48:01,749 - stpipe.Spec2Pipeline.extract_2d - INFO - Extract2dStep instance created. 2021-06-04 04:48:01,753 - stpipe.Spec2Pipeline.master_background - INFO - MasterBackgroundNrsSlitsStep instance created. 2021-06-04 04:48:01,754 - stpipe.Spec2Pipeline.master_background.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:48:01,754 - stpipe.Spec2Pipeline.master_background.pathloss - INFO - PathLossStep instance created. 2021-06-04 04:48:01,755 - stpipe.Spec2Pipeline.master_background.barshadow - INFO - BarShadowStep instance created. 2021-06-04 04:48:01,756 - stpipe.Spec2Pipeline.master_background.photom - INFO - PhotomStep instance created. 2021-06-04 04:48:01,756 - stpipe.Spec2Pipeline.wavecorr - INFO - WavecorrStep instance created. 2021-06-04 04:48:01,757 - stpipe.Spec2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:48:01,758 - stpipe.Spec2Pipeline.srctype - INFO - SourceTypeStep instance created. 2021-06-04 04:48:01,759 - stpipe.Spec2Pipeline.straylight - INFO - StraylightStep instance created. 2021-06-04 04:48:01,759 - stpipe.Spec2Pipeline.fringe - INFO - FringeStep instance created. 2021-06-04 04:48:01,760 - stpipe.Spec2Pipeline.pathloss - INFO - PathLossStep instance created. 2021-06-04 04:48:01,761 - stpipe.Spec2Pipeline.barshadow - INFO - BarShadowStep instance created. 2021-06-04 04:48:01,761 - stpipe.Spec2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:48:01,762 - stpipe.Spec2Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2021-06-04 04:48:01,763 - stpipe.Spec2Pipeline.cube_build - INFO - CubeBuildStep instance created. 2021-06-04 04:48:01,764 - stpipe.Spec2Pipeline.extract_1d - INFO - Extract1dStep instance created. 2021-06-04 04:48:01,764 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:48:01,765 - stpipe - INFO - OS: Linux 2021-06-04 04:48:01,947 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits',). 2021-06-04 04:48:01,959 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_bsub': False, 'fail_on_exception': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'emsm', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'xdebug': None, 'ydebug': None, 'zdebug': None, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}}} 2021-06-04 04:48:02,012 - stpipe.Spec2Pipeline - INFO - Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavecorr', 'wavelengthrange'] 2021-06-04 04:48:02,026 - stpipe.Spec2Pipeline - INFO - Prefetch for APCORR reference file is 'N/A'. 2021-06-04 04:48:02,026 - stpipe.Spec2Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2021-06-04 04:48:02,026 - stpipe.Spec2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:48:02,026 - stpipe.Spec2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:48:02,027 - stpipe.Spec2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:48:02,027 - stpipe.Spec2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:48:02,027 - stpipe.Spec2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-06-04 04:48:02,029 - stpipe.Spec2Pipeline - INFO - Override for EXTRACT1D reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json'. 2021-06-04 04:48:02,029 - stpipe.Spec2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:48:02,029 - stpipe.Spec2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-06-04 04:48:02,030 - stpipe.Spec2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits'. 2021-06-04 04:48:02,031 - stpipe.Spec2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:48:02,031 - stpipe.Spec2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for FRINGE reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:48:02,032 - stpipe.Spec2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits'. 2021-06-04 04:48:02,033 - stpipe.Spec2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:48:02,033 - stpipe.Spec2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:48:02,033 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf'. 2021-06-04 04:48:02,035 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVECORR reference file is 'N/A'. 2021-06-04 04:48:02,035 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf'. 2021-06-04 04:48:02,037 - stpipe.Spec2Pipeline - INFO - Starting calwebb_spec2 ... 2021-06-04 04:48:02,038 - stpipe.Spec2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong 2021-06-04 04:48:02,038 - stpipe.Spec2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits ... 2021-06-04 04:48:02,274 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-06-04 04:48:02,275 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:48:02,628 - stpipe.Spec2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:48:02,633 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:48:02,813 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). 2021-06-04 04:48:02,813 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None} 2021-06-04 04:48:02,814 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step skipped. 2021-06-04 04:48:02,814 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract done 2021-06-04 04:48:02,978 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). 2021-06-04 04:48:02,979 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-06-04 04:48:02,979 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step skipped. 2021-06-04 04:48:02,980 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract done 2021-06-04 04:48:03,138 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-06-04 04:48:03,138 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-06-04 04:48:03,139 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step skipped. 2021-06-04 04:48:03,139 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging done 2021-06-04 04:48:03,300 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-06-04 04:48:03,300 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:48:05,098 - stpipe.Spec2Pipeline.flat_field - INFO - Extracting matching subarray from flat Traceback (most recent call last): File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process result = self.process_exposure_product( File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product calibrated = self._process_grism(calibrated) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism calibrated = self.flat_field(data) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run self.save_model(result, idx=idx) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model output_path = model.save( File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save self.to_fits(output_path, *args, **kwargs) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits _save_from_schema(hdulist, tree, schema) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema validator.validate(tree, _schema=schema) File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate raise error jsonschema.exceptions.ValidationError: 0 is not of type 'string' Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: OrderedDict([('title', 'Total number of points in primary dither pattern'), ('type', 'string'), ('fits_keyword', 'NDITHPTS')]) On instance['meta']['dither']['dither_points']: 0 -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-MASTERBACKGROUNDNRSSLITSSTEP parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-MASTERBACKGROUNDNRSSLITSSTEP parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-MASTERBACKGROUNDNRSSLITSSTEP reference files found. DEBUG stpipe:pipeline.py:182 No PARS-MASTERBACKGROUNDNRSSLITSSTEP reference files found. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-SPEC2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-SPEC2PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-spec2pipeline_0001.asdf INFO stpipe:pipeline.py:179 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-spec2pipeline_0001.asdf INFO stpipe.Spec2Pipeline:step.py:321 Spec2Pipeline instance created. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Spec2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:321 ImprintStep instance created. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:321 MSAFlagOpenStep instance created. INFO stpipe.Spec2Pipeline.extract_2d:step.py:321 Extract2dStep instance created. INFO stpipe.Spec2Pipeline.master_background:step.py:321 MasterBackgroundNrsSlitsStep instance created. INFO stpipe.Spec2Pipeline.master_background.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.master_background.pathloss:step.py:321 PathLossStep instance created. INFO stpipe.Spec2Pipeline.master_background.barshadow:step.py:321 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.master_background.photom:step.py:321 PhotomStep instance created. INFO stpipe.Spec2Pipeline.wavecorr:step.py:321 WavecorrStep instance created. INFO stpipe.Spec2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.srctype:step.py:321 SourceTypeStep instance created. INFO stpipe.Spec2Pipeline.straylight:step.py:321 StraylightStep instance created. INFO stpipe.Spec2Pipeline.fringe:step.py:321 FringeStep instance created. INFO stpipe.Spec2Pipeline.pathloss:step.py:321 PathLossStep instance created. INFO stpipe.Spec2Pipeline.barshadow:step.py:321 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Spec2Pipeline.resample_spec:step.py:321 ResampleSpecStep instance created. INFO stpipe.Spec2Pipeline.cube_build:step.py:321 CubeBuildStep instance created. INFO stpipe.Spec2Pipeline.extract_1d:step.py:321 Extract1dStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Spec2Pipeline:step.py:367 Step Spec2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits',). INFO stpipe.Spec2Pipeline:step.py:371 Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_bsub': False, 'fail_on_exception': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'emsm', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'xdebug': None, 'ydebug': None, 'zdebug': None, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}}} DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Spec2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Spec2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavecorr', 'wavelengthrange'] INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for APCORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Override for EXTRACT1D reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FRINGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for WAVECORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf'. INFO stpipe.Spec2Pipeline:calwebb_spec2.py:88 Starting calwebb_spec2 ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:105 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong INFO stpipe.Spec2Pipeline:calwebb_spec2.py:171 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits ... DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Spec2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:347 Science data does not allow fringe correction. Skipping "fringe". INFO stpipe.Spec2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:367 Step bkg_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:371 Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None} INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:401 Step skipped. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:470 Step bkg_subtract done INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:367 Step imprint_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:371 Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:401 Step skipped. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:470 Step imprint_subtract done INFO stpipe.Spec2Pipeline.msa_flagging:step.py:367 Step msa_flagging running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.msa_flagging:step.py:371 Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.msa_flagging:step.py:401 Step skipped. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:470 Step msa_flagging done INFO stpipe.Spec2Pipeline.flat_field:step.py:367 Step flat_field running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSGRISM DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=256 INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:336 slice xstart=0, xstop=2048, ystart=0, ystop=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:336 slice xstart=0, xstop=2048, ystart=0, ystop=256 DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[extract_2d]::setup | 0.00 | |
|
jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[flat_field]::setup | 0.00 | |
|
jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[o012_crfints]::setup | 0.00 | |
|
jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[srctype]::setup | 0.00 | |
|
jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[x1dints]::setup | 0.00 | |
|
jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_x1dints::setup | 0.00 | |
|
jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_whtlt::setup | 0.00 | |
|
jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2-3 tso pipelines on NIRCAM TSO grism data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run tso-spec2 pipeline on the _rateints file, saving intermediate products rtdata.get_data("nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits") args = ["config/calwebb_tso-spec2.cfg", rtdata.input, "--steps.flat_field.save_results=True", "--steps.extract_2d.save_results=True", "--steps.srctype.save_results=True", "--steps.extract_1d.override_extract1d='jwst_nircam_tsgrism_extract1d.json'" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.pipeline.calwebb_spec2.Spec2Pipeline object at 0x7ff6281e38b0> data = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' def process(self, data): """Entrypoint for this pipeline Parameters ---------- input: str, Level2 Association, or DataModel The exposure or association of exposures to process """ self.log.info('Starting calwebb_spec2 ...') # Setup step parameters required by the pipeline. self.resample_spec.save_results = self.save_results self.resample_spec.suffix = 's2d' self.cube_build.output_type = 'multi' self.cube_build.save_results = False self.extract_1d.save_results = self.save_results # Retrieve the input(s) asn = self.load_as_level2_asn(data) # Each exposure is a product in the association. # Process each exposure. Delay reporting failures until the end. results = [] failures = [] for product in asn['products']: self.log.info('Processing product {}'.format(product['name'])) self.output_file = product['name'] try: getattr(asn, 'filename') except AttributeError: asn.filename = "singleton" try: result = self.process_exposure_product( product, asn['asn_pool'], asn.filename ) except NoDataOnDetectorError as exception: # This error merits a special return # status if run from the command line. # Bump it up now. raise exception except Exception: traceback.print_exc() failures.append(traceback.format_exc()) else: if result is not None: results.append(result) if len(failures) > 0 and self.fail_on_exception: > raise RuntimeError('\n'.join(failures)) E RuntimeError: Traceback (most recent call last): E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 112, in process E result = self.process_exposure_product( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 238, in process_exposure_product E calibrated = self._process_grism(calibrated) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py", line 371, in _process_grism E calibrated = self.flat_field(data) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 451, in run E self.save_model(result, idx=idx) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py", line 919, in save_model E output_path = model.save( E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 511, in save E self.to_fits(output_path, *args, **kwargs) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py", line 623, in to_fits E with fits_support.to_fits(self._instance, self._schema) as ff: E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 395, in to_fits E _save_from_schema(hdulist, tree, schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py", line 352, in _save_from_schema E validator.validate(tree, _schema=schema) E File "/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py", line 353, in validate E raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/pipeline/calwebb_spec2.py:130: RuntimeError | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints]::setup | 3.46 | |
|
jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2 and 3 pipelines on NIRCam TSO image data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run the calwebb_tso-image2 pipeline on each of the 2 inputs rate_files = [ "nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits", "nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits" ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_tso-image2.cfg", rtdata.input] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:451: in run self.save_model(result, idx=idx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:919: in save_model output_path = model.save( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff6294bb670> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...642 ], [0.9929633 , 0.9929597 , 0.992956 , ..., 0.99105275, 0.99105495, 0.9910572 ]], dtype=float32)},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...ance due to flat field'), ('fits_hdu', 'VAR_FLAT'), ('max_ndim', 3), ('default', 0.0), ('datatype', 'float32')]))]))])} error = <ValidationError: "0 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationError -----------------------------Captured stdout setup------------------------------ ---------------------------------------------------------------------- ERROR RUNNING STEP 'Image2Pipeline': 0 is not of type 'string' Failed validating 'type' in schema['pro perties']['meta']['properties']['dither']['properties']['dither_po ints']: OrderedDict([('title', 'Total number of points in primary dither pattern'), ('type', 'string'), ('fits_keyword', 'NDITHPTS')]) On instance['meta']['dither']['dither_points']: 0 ---------------------------------------------------------------------- -----------------------------Captured stderr setup------------------------------ 2021-06-04 04:48:07,422 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf 2021-06-04 04:48:07,435 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:48:07,436 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:48:07,437 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:48:07,438 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:48:07,438 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:48:07,439 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:48:07,439 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:48:07,439 - stpipe - INFO - OS: Linux 2021-06-04 04:48:07,589 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits',). 2021-06-04 04:48:07,592 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:48:07,640 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] 2021-06-04 04:48:07,652 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. 2021-06-04 04:48:07,654 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:48:07,654 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:48:07,654 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:48:07,654 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:48:07,654 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. 2021-06-04 04:48:07,656 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:48:07,656 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. 2021-06-04 04:48:07,657 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:48:07,659 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:48:07,660 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits'. 2021-06-04 04:48:07,661 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:48:07,661 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:48:07,661 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:48:07,661 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:48:07,662 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:48:07,662 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 2021-06-04 04:48:07,662 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits ... 2021-06-04 04:48:07,858 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-06-04 04:48:07,859 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:48:08,130 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-06-04 04:48:08,131 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-06-04 04:48:08,131 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:48:08,164 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:48:08,318 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-06-04 04:48:08,319 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:48:09,848 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2021-06-04 04:48:09,861 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:48:10,035 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-06-04 04:48:10,036 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} 2021-06-04 04:48:10,063 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits 2021-06-04 04:48:10,063 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits 2021-06-04 04:48:10,119 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:48:10,119 - stpipe.Image2Pipeline.photom - INFO - detector: NRCB1 2021-06-04 04:48:10,119 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_TSIMAGE 2021-06-04 04:48:10,119 - stpipe.Image2Pipeline.photom - INFO - filter: F210M 2021-06-04 04:48:10,119 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-06-04 04:48:10,554 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:48:10,557 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 6.1144 2021-06-04 04:48:10,564 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:48:10,564 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 2021-06-04 04:48:10,565 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Image2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Image2Pipeline:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSIMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:336 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:336 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is CubeModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 2.2267012997456e-14, PIXAR_A2 = 0.0009473538599634 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 2.2267012997456e-14, PIXAR_A2 = 0.0009473538599634 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 6.1144 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 6.1144 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[o006_crfints]::setup | 0.00 | |
|
jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2 and 3 pipelines on NIRCam TSO image data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run the calwebb_tso-image2 pipeline on each of the 2 inputs rate_files = [ "nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits", "nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits" ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_tso-image2.cfg", rtdata.input] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:451: in run self.save_model(result, idx=idx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:919: in save_model output_path = model.save( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff6294bb670> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...642 ], [0.9929633 , 0.9929597 , 0.992956 , ..., 0.99105275, 0.99105495, 0.9910572 ]], dtype=float32)},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...ance due to flat field'), ('fits_hdu', 'VAR_FLAT'), ('max_ndim', 3), ('default', 0.0), ('datatype', 'float32')]))]))])} error = <ValidationError: "0 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationError | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimage_stage3_phot::setup | 0.00 | |
|
jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0') rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} @pytest.fixture(scope="module") def run_pipelines(jail, rtdata_module): """Run stage 2 and 3 pipelines on NIRCam TSO image data.""" rtdata = rtdata_module collect_pipeline_cfgs("config") # Run the calwebb_tso-image2 pipeline on each of the 2 inputs rate_files = [ "nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits", "nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits" ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_tso-image2.cfg", rtdata.input] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:451: in run self.save_model(result, idx=idx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:919: in save_model output_path = model.save( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff6294bb670> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...642 ], [0.9929633 , 0.9929597 , 0.992956 , ..., 0.99105275, 0.99105495, 0.9910572 ]], dtype=float32)},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...ance due to flat field'), ('fits_hdu', 'VAR_FLAT'), ('max_ndim', 3), ('default', 0.0), ('datatype', 'float32')]))]))])} error = <ValidationError: "0 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationError | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] | 99.61 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...its', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits'} suffix = 'psfalign', exposure = '00001' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 213 E b: 205 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 41 time(s) in a, 40 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> IFU fore reference file information E Keyword [26] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [27] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [28] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [29] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [30] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [31] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [32] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [33] has different values: E a> Photometric reference file information E ? ^^^^ ^^^^^ E b> PSF mask reference file information E ? ^^^ ^^^ E Keyword [34] has different values: E a> PSF mask reference file information E ? ^^^^^^ - E b> Regions reference file information E ? ^^^^^^ E Keyword [35] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [36] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [37] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [38] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [39] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [40] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 44 E b: 46 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Data contains differences: E Data differs at [1, 1, 1, 1]: E a> 0.8174741 E b> 0.81740034 E Data differs at [2, 1, 1, 1]: E a> 0.74938107 E b> 0.7494544 E Data differs at [3, 1, 1, 1]: E a> 0.73527235 E b> 0.73519963 E Data differs at [4, 1, 1, 1]: E a> 1.3193785 E b> 1.3194506 E Data differs at [5, 1, 1, 1]: E a> 1.8136498 E b> 1.8135782 E Data differs at [6, 1, 1, 1]: E a> 1.9346659 E b> 1.9347368 E Data differs at [7, 1, 1, 1]: E a> 1.8578717 E ? ^ ^ E b> 1.8578012 E ? ^ ^ E Data differs at [8, 1, 1, 1]: E a> 1.5832175 E ? ^ ^ E b> 1.5832874 E ? ^ ^ E Data differs at [9, 1, 1, 1]: E a> 1.1997532 E b> 1.1996839 E Data differs at [10, 1, 1, 1]: E a> 1.142912 E b> 1.1429807 E ... E 5253695 different pixels found (42.52% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 1, 5, 1]: E a> 0.9378694 E b> 0.9381585 E Data differs at [2, 1, 5, 1]: E a> 0.90263975 E b> 0.90290546 E Data differs at [3, 1, 5, 1]: E a> 0.9586701 E b> 0.9595252 E Data differs at [4, 1, 5, 1]: E a> 1.1451049 E b> 1.1457568 E Data differs at [5, 1, 5, 1]: E a> 1.3068402 E b> 1.3070675 E Data differs at [6, 1, 5, 1]: E a> 1.3872736 E b> 1.3873881 E Data differs at [7, 1, 5, 1]: E a> 1.408235 E ? - E b> 1.4082963 E ? ++ E Data differs at [8, 1, 5, 1]: E a> 1.3097227 E b> 1.3095431 E Data differs at [9, 1, 5, 1]: E a> 1.1201289 E b> 1.1199646 E Data differs at [10, 1, 5, 1]: E a> 1.0321367 E b> 1.0319871 E ... E 1787435 different pixels found (14.46% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff628f51c70>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError -----------------------------Captured stderr setup------------------------------ 2021-06-04 04:38:51,470 - stpipe.Coron3Pipeline - INFO - Coron3Pipeline instance created. 2021-06-04 04:38:51,471 - stpipe.Coron3Pipeline.stack_refs - INFO - StackRefsStep instance created. 2021-06-04 04:38:51,472 - stpipe.Coron3Pipeline.align_refs - INFO - AlignRefsStep instance created. 2021-06-04 04:38:51,472 - stpipe.Coron3Pipeline.klip - INFO - KlipStep instance created. 2021-06-04 04:38:51,473 - stpipe.Coron3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-06-04 04:38:51,474 - stpipe.Coron3Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:38:51,474 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:38:51,474 - stpipe - INFO - OS: Linux 2021-06-04 04:38:51,594 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_20170327t121212_coron3_001_asn.json',). 2021-06-04 04:38:51,597 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'steps': {'stack_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'}, 'align_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'}, 'klip': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:38:51,598 - stpipe.Coron3Pipeline - INFO - Starting calwebb_coron3 ... 2021-06-04 04:38:51,758 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00003_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-06-04 04:38:51,768 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:38:51,770 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-06-04 04:38:51,932 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00005_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-06-04 04:38:51,934 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:38:51,935 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-06-04 04:38:52,087 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00004_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-06-04 04:38:52,089 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:38:52,090 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-06-04 04:38:52,161 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00001_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-06-04 04:38:52,162 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:38:52,163 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-06-04 04:38:52,243 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00002_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-06-04 04:38:52,246 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:38:52,246 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-06-04 04:38:52,832 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00003_nrcb3_calints.fits>,). 2021-06-04 04:38:52,833 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:38:52,840 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-06-04 04:38:53,551 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-06-04 04:38:55,706 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00003_nrcb3_a3001_crfints.fits 2021-06-04 04:38:55,706 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:38:55,829 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00005_nrcb3_calints.fits>,). 2021-06-04 04:38:55,830 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:38:55,837 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-06-04 04:38:56,517 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-06-04 04:38:58,621 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00005_nrcb3_a3001_crfints.fits 2021-06-04 04:38:58,621 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:38:58,748 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00004_nrcb3_calints.fits>,). 2021-06-04 04:38:58,749 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:38:58,757 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-06-04 04:38:59,432 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-06-04 04:39:01,475 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00004_nrcb3_a3001_crfints.fits 2021-06-04 04:39:01,475 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:39:01,604 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs running with args (<ModelContainer>,). 2021-06-04 04:39:01,605 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'} 2021-06-04 04:39:01,623 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 1 to output stack 2021-06-04 04:39:01,634 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 2 to output stack 2021-06-04 04:39:01,642 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 3 to output stack 2021-06-04 04:39:01,685 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs done 2021-06-04 04:39:01,767 - stpipe.Coron3Pipeline - INFO - Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits 2021-06-04 04:39:01,963 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_calints.fits>,). 2021-06-04 04:39:01,964 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:39:01,972 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 5 inputs 2021-06-04 04:39:02,108 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 5 images 2021-06-04 04:39:02,475 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_crfints.fits 2021-06-04 04:39:02,475 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:39:02,591 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). 2021-06-04 04:39:02,592 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} 2021-06-04 04:39:02,599 - stpipe.Coron3Pipeline.align_refs - INFO - Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits 2021-06-04 04:39:41,400 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs done 2021-06-04 04:39:41,660 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits 2021-06-04 04:39:41,803 - stpipe.Coron3Pipeline.klip - INFO - Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits>). 2021-06-04 04:39:41,803 - stpipe.Coron3Pipeline.klip - INFO - Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} 2021-06-04 04:39:41,812 - stpipe.Coron3Pipeline.klip - INFO - KL transform truncation = 50 2021-06-04 04:39:42,422 - stpipe.Coron3Pipeline.klip - INFO - Step klip done 2021-06-04 04:39:42,526 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits 2021-06-04 04:39:42,904 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_calints.fits>,). 2021-06-04 04:39:42,905 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:39:42,913 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 5 inputs 2021-06-04 04:39:43,054 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 5 images 2021-06-04 04:39:43,431 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_crfints.fits 2021-06-04 04:39:43,431 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:39:43,559 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). 2021-06-04 04:39:43,560 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'align_refs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} 2021-06-04 04:39:43,568 - stpipe.Coron3Pipeline.align_refs - INFO - Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits 2021-06-04 04:40:22,435 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs done 2021-06-04 04:40:22,685 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits 2021-06-04 04:40:22,809 - stpipe.Coron3Pipeline.klip - INFO - Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits>). 2021-06-04 04:40:22,809 - stpipe.Coron3Pipeline.klip - INFO - Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'klip', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} 2021-06-04 04:40:22,817 - stpipe.Coron3Pipeline.klip - INFO - KL transform truncation = 50 2021-06-04 04:40:23,338 - stpipe.Coron3Pipeline.klip - INFO - Step klip done 2021-06-04 04:40:23,437 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits 2021-06-04 04:40:23,737 - stpipe.Coron3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-06-04 04:40:23,738 - stpipe.Coron3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': False, 'allowed_memory': None} 2021-06-04 04:40:23,757 - stpipe.Coron3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-06-04 04:40:23,985 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,065 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,145 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,224 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,304 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,385 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,464 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,544 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,623 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,703 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-06-04 04:40:24,724 - stpipe.Coron3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 2021-06-04 04:40:24,726 - stpipe.Coron3Pipeline.resample - INFO - Step resample done 2021-06-04 04:40:25,867 - stpipe.Coron3Pipeline - INFO - Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits 2021-06-04 04:40:25,868 - stpipe.Coron3Pipeline - INFO - ...ending calwebb_coron3 2021-06-04 04:40:25,868 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-CORON3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-CORON3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-CORON3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-CORON3PIPELINE reference files found. INFO stpipe.Coron3Pipeline:step.py:321 Coron3Pipeline instance created. INFO stpipe.Coron3Pipeline.stack_refs:step.py:321 StackRefsStep instance created. INFO stpipe.Coron3Pipeline.align_refs:step.py:321 AlignRefsStep instance created. INFO stpipe.Coron3Pipeline.klip:step.py:321 KlipStep instance created. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Coron3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Coron3Pipeline:step.py:367 Step Coron3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_20170327t121212_coron3_001_asn.json',). INFO stpipe.Coron3Pipeline:step.py:371 Step Coron3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'steps': {'stack_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'}, 'align_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'}, 'klip': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} INFO stpipe.Coron3Pipeline:calwebb_coron3.py:51 Starting calwebb_coron3 ... DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00003_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00005_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00004_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00001_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00002_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00003_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00003_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00005_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00005_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00004_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24956 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24956 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00004_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.stack_refs:step.py:367 Step stack_refs running with args (<ModelContainer>,). INFO stpipe.Coron3Pipeline.stack_refs:step.py:371 Step stack_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'} DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 1 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 1 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 2 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 2 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 3 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 3 to output stack DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.stack_refs:step.py:470 Step stack_refs done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 5 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00001_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.align_refs:step.py:367 Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). INFO stpipe.Coron3Pipeline.align_refs:step.py:371 Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:align_refs_step.py:34 Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:step.py:470 Step align_refs done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits INFO stpipe.Coron3Pipeline.klip:step.py:367 Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits>). INFO stpipe.Coron3Pipeline.klip:step.py:371 Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:klip_step.py:30 KL transform truncation = 50 DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:step.py:470 Step klip done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 5 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00002_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.align_refs:step.py:367 Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). INFO stpipe.Coron3Pipeline.align_refs:step.py:371 Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'align_refs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:align_refs_step.py:34 Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:step.py:470 Step align_refs done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits INFO stpipe.Coron3Pipeline.klip:step.py:367 Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits>). INFO stpipe.Coron3Pipeline.klip:step.py:371 Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'klip', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:klip_step.py:30 KL transform truncation = 50 DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:step.py:470 Step klip done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Coron3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:resample_step.py:68 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 single=False DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 blendheaders=False DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 pixfrac=1.0 DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 kernel=square DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 fillval=INDEF DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:186 pscale_ratio=1.0 DEBUG stpipe.Coron3Pipeline.resample:resample.py:76 Output mosaic size: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:76 Output mosaic size: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Coron3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Coron3Pipeline.resample:util.py:406 Model size 97.5K available system memory 119.5G DEBUG stpipe.Coron3Pipeline.resample:util.py:406 Model size 97.5K available system memory 119.5G DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 INFO stpipe.Coron3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 INFO stpipe.Coron3Pipeline.resample:step.py:470 Step resample done DEBUG stpipe.Coron3Pipeline:calwebb_coron3.py:167 Blending metadata for <ImageModel(158, 158)> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits INFO stpipe.Coron3Pipeline:calwebb_coron3.py:180 ...ending calwebb_coron3 INFO stpipe.Coron3Pipeline:step.py:470 Step Coron3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfsub] | 0.20 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits'} suffix = 'psfsub', exposure = '00001' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 216 E b: 208 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 42 time(s) in a, 41 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [26] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [27] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [28] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [29] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [30] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [31] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [32] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [33] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [34] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [35] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [36] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [37] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [38] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [39] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [40] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [41] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Data contains differences: E Data differs at [1, 1, 1]: E a> 0.010976201 E b> 0.011709869 E Data differs at [2, 1, 1]: E a> -0.010925648 E b> -0.008756997 E Data differs at [3, 1, 1]: E a> 0.0027528903 E b> 0.005458541 E Data differs at [4, 1, 1]: E a> 0.0055384696 E b> 0.0047238334 E Data differs at [5, 1, 1]: E a> -0.014096385 E b> -0.0135342665 E Data differs at [6, 1, 1]: E a> -0.0004161552 E b> -0.00067709974 E Data differs at [7, 1, 1]: E a> -0.022358174 E b> -0.017525608 E Data differs at [8, 1, 1]: E a> -0.008460747 E b> -0.0068258205 E Data differs at [9, 1, 1]: E a> -0.007704167 E b> -0.008692313 E Data differs at [10, 1, 1]: E a> -0.0033204374 E b> -0.0070272596 E ... E 124650 different pixels found (99.86% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 1, 1]: E a> 0.0071968297 E b> 0.005871514 E Data differs at [2, 1, 1]: E a> 0.0065628793 E b> 0.005677722 E Data differs at [3, 1, 1]: E a> 0.008030228 E b> 0.0077774227 E Data differs at [4, 1, 1]: E a> 0.0099741835 E b> 0.008827844 E Data differs at [5, 1, 1]: E a> 0.010747912 E b> 0.00967869 E Data differs at [6, 1, 1]: E a> 0.009266905 E b> 0.008766226 E Data differs at [7, 1, 1]: E a> 0.0094051855 E b> 0.009492439 E Data differs at [8, 1, 1]: E a> 0.01048503 E b> 0.009703036 E Data differs at [9, 1, 1]: E a> 0.008999568 E b> 0.007910081 E Data differs at [10, 1, 1]: E a> 0.007691582 E b> 0.007911101 E ... E 124250 different pixels found (99.54% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6298b62e0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-crfints] | 0.29 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00001' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 215 E b: 207 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 42 time(s) in a, 41 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [26] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [27] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [28] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [29] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [30] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [31] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [32] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [33] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [34] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [35] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [36] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [37] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [38] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [39] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [40] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [41] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff627a4f0d0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfalign] | 2.34 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...its', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits'} suffix = 'psfalign', exposure = '00002' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 213 E b: 205 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 41 time(s) in a, 40 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> IFU fore reference file information E Keyword [26] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [27] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [28] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [29] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [30] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [31] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [32] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [33] has different values: E a> Photometric reference file information E ? ^^^^ ^^^^^ E b> PSF mask reference file information E ? ^^^ ^^^ E Keyword [34] has different values: E a> PSF mask reference file information E ? ^^^^^^ - E b> Regions reference file information E ? ^^^^^^ E Keyword [35] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [36] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [37] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [38] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [39] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [40] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 44 E b: 46 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Data contains differences: E Data differs at [1, 1, 1, 1]: E a> 0.8174741 E b> 0.81740034 E Data differs at [2, 1, 1, 1]: E a> 0.74938107 E b> 0.7494544 E Data differs at [3, 1, 1, 1]: E a> 0.73527235 E b> 0.73519963 E Data differs at [4, 1, 1, 1]: E a> 1.3193785 E b> 1.3194506 E Data differs at [5, 1, 1, 1]: E a> 1.8136498 E b> 1.8135782 E Data differs at [6, 1, 1, 1]: E a> 1.9346659 E b> 1.9347368 E Data differs at [7, 1, 1, 1]: E a> 1.8578717 E ? ^ ^ E b> 1.8578012 E ? ^ ^ E Data differs at [8, 1, 1, 1]: E a> 1.5832175 E ? ^ ^ E b> 1.5832874 E ? ^ ^ E Data differs at [9, 1, 1, 1]: E a> 1.1997532 E b> 1.1996839 E Data differs at [10, 1, 1, 1]: E a> 1.142912 E b> 1.1429807 E ... E 5253695 different pixels found (42.52% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 1, 5, 1]: E a> 0.9378694 E b> 0.9381585 E Data differs at [2, 1, 5, 1]: E a> 0.90263975 E b> 0.90290546 E Data differs at [3, 1, 5, 1]: E a> 0.9586701 E b> 0.9595252 E Data differs at [4, 1, 5, 1]: E a> 1.1451049 E b> 1.1457568 E Data differs at [5, 1, 5, 1]: E a> 1.3068402 E b> 1.3070675 E Data differs at [6, 1, 5, 1]: E a> 1.3872736 E b> 1.3873881 E Data differs at [7, 1, 5, 1]: E a> 1.408235 E ? - E b> 1.4082963 E ? ++ E Data differs at [8, 1, 5, 1]: E a> 1.3097227 E b> 1.3095431 E Data differs at [9, 1, 5, 1]: E a> 1.1201289 E b> 1.1199646 E Data differs at [10, 1, 5, 1]: E a> 1.0321367 E b> 1.0319871 E ... E 1787435 different pixels found (14.46% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff627b68e20>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfsub] | 0.22 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits'} suffix = 'psfsub', exposure = '00002' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 216 E b: 208 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 42 time(s) in a, 41 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [26] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [27] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [28] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [29] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [30] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [31] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [32] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [33] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [34] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [35] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [36] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [37] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [38] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [39] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [40] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [41] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Data contains differences: E Data differs at [1, 1, 1]: E a> 0.010976201 E b> 0.011709869 E Data differs at [2, 1, 1]: E a> -0.010925648 E b> -0.008756997 E Data differs at [3, 1, 1]: E a> 0.0027528903 E b> 0.005458541 E Data differs at [4, 1, 1]: E a> 0.0055384696 E b> 0.0047238334 E Data differs at [5, 1, 1]: E a> -0.014096385 E b> -0.0135342665 E Data differs at [6, 1, 1]: E a> -0.0004161552 E b> -0.00067709974 E Data differs at [7, 1, 1]: E a> -0.022358174 E b> -0.017525608 E Data differs at [8, 1, 1]: E a> -0.008460747 E b> -0.0068258205 E Data differs at [9, 1, 1]: E a> -0.007704167 E b> -0.008692313 E Data differs at [10, 1, 1]: E a> -0.0033204374 E b> -0.0070272596 E ... E 124650 different pixels found (99.86% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 1, 1]: E a> 0.0071968297 E b> 0.005871514 E Data differs at [2, 1, 1]: E a> 0.0065628793 E b> 0.005677722 E Data differs at [3, 1, 1]: E a> 0.008030228 E b> 0.0077774227 E Data differs at [4, 1, 1]: E a> 0.0099741835 E b> 0.008827844 E Data differs at [5, 1, 1]: E a> 0.010747912 E b> 0.00967869 E Data differs at [6, 1, 1]: E a> 0.009266905 E b> 0.008766226 E Data differs at [7, 1, 1]: E a> 0.0094051855 E b> 0.009492439 E Data differs at [8, 1, 1]: E a> 0.01048503 E b> 0.009703036 E Data differs at [9, 1, 1]: E a> 0.008999568 E b> 0.007910081 E Data differs at [10, 1, 1]: E a> 0.007691582 E b> 0.007911101 E ... E 124250 different pixels found (99.54% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6293451f0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-crfints] | 0.24 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00002' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 215 E b: 207 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 42 time(s) in a, 41 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [26] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [27] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [28] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [29] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [30] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [31] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [32] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [33] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [34] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [35] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [36] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [37] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [38] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [39] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [40] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [41] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff62863af10>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00003-crfints] | 0.27 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00003' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["crfints"]) @pytest.mark.parametrize("exposure", ["00003", "00004", "00005"]) def test_nircam_coron3_psf_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 211 E b: 210 E Inconsistent duplicates of keyword '' : E Occurs 40 time(s) in a, 39 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> IFU fore reference file information E Keyword [26] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [27] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [28] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [29] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [30] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [31] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [32] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [33] has different values: E a> Photometric reference file information E ? ^^ ^^^^^^^^ E b> Regions reference file information E ? ^^^^ ^^ E Keyword [34] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [35] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [36] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [37] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [38] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [39] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [83, 77, 1]: E a> 0 E b> 17 E Data differs at [79, 78, 1]: E a> 0 E b> 17 E Data differs at [74, 80, 1]: E a> 0 E b> 17 E Data differs at [80, 81, 1]: E a> 0 E b> 17 E Data differs at [75, 83, 1]: E a> 0 E b> 17 E Data differs at [76, 94, 1]: E a> 0 E b> 17 E Data differs at [81, 62, 2]: E a> 0 E b> 17 E Data differs at [72, 69, 2]: E a> 0 E b> 17 E Data differs at [74, 69, 2]: E a> 0 E b> 17 E Data differs at [72, 70, 2]: E a> 0 E b> 17 E ... E 366 different pixels found (0.04% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff629091b20>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:55: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00004-crfints] | 0.37 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00004' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["crfints"]) @pytest.mark.parametrize("exposure", ["00003", "00004", "00005"]) def test_nircam_coron3_psf_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 211 E b: 210 E Inconsistent duplicates of keyword '' : E Occurs 40 time(s) in a, 39 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> IFU fore reference file information E Keyword [26] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [27] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [28] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [29] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [30] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [31] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [32] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [33] has different values: E a> Photometric reference file information E ? ^^ ^^^^^^^^ E b> Regions reference file information E ? ^^^^ ^^ E Keyword [34] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [35] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [36] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [37] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [38] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [39] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [73, 71, 1]: E a> 0 E b> 17 E Data differs at [80, 78, 1]: E a> 0 E b> 17 E Data differs at [79, 81, 1]: E a> 0 E b> 17 E Data differs at [72, 69, 3]: E a> 0 E b> 17 E Data differs at [74, 69, 3]: E a> 0 E b> 17 E Data differs at [72, 70, 3]: E a> 0 E b> 17 E Data differs at [75, 70, 3]: E a> 0 E b> 17 E Data differs at [81, 79, 3]: E a> 0 E b> 17 E Data differs at [78, 80, 3]: E a> 0 E b> 17 E Data differs at [81, 80, 3]: E a> 0 E b> 17 E ... E 766 different pixels found (0.09% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff62ad74250>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:55: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00005-crfints] | 0.32 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00005' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["crfints"]) @pytest.mark.parametrize("exposure", ["00003", "00004", "00005"]) def test_nircam_coron3_psf_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 211 E b: 210 E Inconsistent duplicates of keyword '' : E Occurs 40 time(s) in a, 39 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> IFU fore reference file information E Keyword [26] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [27] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [28] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [29] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [30] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [31] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [32] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [33] has different values: E a> Photometric reference file information E ? ^^ ^^^^^^^^ E b> Regions reference file information E ? ^^^^ ^^ E Keyword [34] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [35] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [36] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [37] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [38] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [39] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [81, 61, 5]: E a> 0 E b> 17 E Data differs at [81, 62, 5]: E a> 0 E b> 17 E Data differs at [82, 62, 5]: E a> 0 E b> 17 E Data differs at [81, 63, 5]: E a> 0 E b> 17 E Data differs at [84, 63, 5]: E a> 0 E b> 17 E Data differs at [87, 63, 5]: E a> 0 E b> 17 E Data differs at [78, 64, 5]: E a> 0 E b> 17 E Data differs at [90, 64, 5]: E a> 0 E b> 17 E Data differs at [78, 65, 5]: E a> 0 E b> 17 E Data differs at [89, 67, 5]: E a> 0 E b> 17 E ... E 590 different pixels found (0.07% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff627e67820>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:55: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[psfstack] | 0.53 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits'} suffix = 'psfstack' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfstack", "i2d"]) def test_nircam_coron3_product(run_pipeline, suffix, fitsdiff_default_kwargs): """Check final products of calwebb_coron3""" rtdata = run_pipeline output = "jw99999-a3001_t1_nircam_f140m-maskbar_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 210 E b: 202 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Inconsistent duplicates of keyword '' : E Occurs 40 time(s) in a, 39 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword [13] has different values: E a> Guide star information E b> Reference file information E Keyword [14] has different values: E a> Reference file information E b> CRDS parameters E Keyword [15] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [16] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [17] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [18] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [19] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [20] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [21] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [22] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [23] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [24] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [25] has different values: E a> Nirspec FPA Model reference file information E b> IFU fore reference file information E Keyword [26] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [27] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [28] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [29] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [30] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [31] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [32] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [33] has different values: E a> Photometric reference file information E ? ^^ ^^^^^^^^ E b> Regions reference file information E ? ^^^^ ^^ E Keyword [34] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [35] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [36] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [37] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [38] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [39] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 43 E b: 45 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [83, 77, 1]: E a> 0 E b> 17 E Data differs at [79, 78, 1]: E a> 0 E b> 17 E Data differs at [74, 80, 1]: E a> 0 E b> 17 E Data differs at [80, 81, 1]: E a> 0 E b> 17 E Data differs at [75, 83, 1]: E a> 0 E b> 17 E Data differs at [76, 94, 1]: E a> 0 E b> 17 E Data differs at [81, 62, 2]: E a> 0 E b> 17 E Data differs at [72, 69, 2]: E a> 0 E b> 17 E Data differs at [74, 69, 2]: E a> 0 E b> 17 E Data differs at [72, 70, 2]: E a> 0 E b> 17 E ... E 1722 different pixels found (0.07% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff627dd93d0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:70: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[i2d] | 0.31 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits'} suffix = 'i2d' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfstack", "i2d"]) def test_nircam_coron3_product(run_pipeline, suffix, fitsdiff_default_kwargs): """Check final products of calwebb_coron3""" rtdata = run_pipeline output = "jw99999-a3001_t1_nircam_f140m-maskbar_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Files contain different numbers of HDUs: E a: 6 E b: 10 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 226 E b: 220 E Extra keyword 'EPH_TIME' in a: 57405 E Extra keyword 'JWST_DX' in a: 0.0062084926369002 E Extra keyword 'JWST_DY' in a: -0.0414014384128443 E Extra keyword 'JWST_DZ' in a: -0.0404730372127553 E Extra keyword 'JWST_X' in a: -1474588.5320823 E Extra keyword 'JWST_Y' in a: -636742.348989232 E Extra keyword 'JWST_Z' in a: -585705.761390126 E Extra keyword 'PIXFRAC' in b: 1.0 E Extra keyword 'PXSCLRT' in b: 1.0 E Inconsistent duplicates of keyword '' : E Occurs 45 time(s) in a, 44 times in (b) E Keyword [10] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [11] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [12] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [13] has different values: E a> Time information E b> Guide star information E Keyword [14] has different values: E a> Guide star information E b> Reference file information E Keyword [15] has different values: E a> Reference file information E b> CRDS parameters E Keyword [16] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [17] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [18] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [19] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [20] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [21] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [22] has different values: E a> Distortion reference file information E b> Drizzle parameters reference file information E Keyword [23] has different values: E a> Drizzle parameters reference file information E ? ^^ -- -------- E b> Filter Offset reference file information E ? ^ ++++ ++ E Keyword [24] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [25] has different values: E a> Flat reference file information E ? -- E b> Nirspec FORE Model reference file information E ? ++++++++ ++++++++ E Keyword [26] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [27] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [28] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [29] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [30] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [31] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [32] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [33] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [34] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [35] has different values: E a> Nirspec OTE Model reference file information E b> Photometric reference file information E Keyword [36] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [37] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [38] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [39] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [40] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [41] has different values: E a> Superbias reference file information E ? ^^^ ^^^^^ E b> V2_V3 Model reference file information E ? ^^^^^^^^^ ^ E Keyword [42] has different values: E a> V2_V3 Model reference file information E b> Wavelength Range reference file information E Keyword [43] has different values: E a> Wavelength Range reference file information E b> Calibration step information E Keyword [44] has different values: E a> Calibration step information E b> Resample Parameters E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 42 E b: 37 E Extra keyword 'DEC_REF' in a: 13.27103461043576 E Extra keyword 'RA_REF' in a: 6.13521494459213 E Extra keyword 'ROLL_REF' in a: 0.0 E Extra keyword 'V2_REF' in a: -53.123823 E Extra keyword 'V3I_YANG' in a: -0.5509 E Extra keyword 'V3_REF' in a: -457.780381 E Extra keyword 'VPARITY' in a: -1 E Extra keyword 'EPH_TIME' in b: 57405 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E E Data contains differences: E Data differs at [1, 1]: E a> 0.010976203 E b> 0.011709871 E Data differs at [2, 1]: E a> -0.00070084154 E b> 0.00079789205 E Data differs at [3, 1]: E a> -0.0036351548 E b> -0.0011802895 E Data differs at [4, 1]: E a> 0.0042369864 E b> 0.005067105 E Data differs at [5, 1]: E a> -0.004918507 E b> -0.004999922 E Data differs at [6, 1]: E a> -0.0068134167 E b> -0.006689473 E Data differs at [7, 1]: E a> -0.012093205 E b> -0.009643498 E Data differs at [8, 1]: E a> -0.014964893 E b> -0.011833436 E Data differs at [9, 1]: E a> -0.008058395 E b> -0.007818433 E Data differs at [10, 1]: E a> -0.005373648 E b> -0.0078071207 E ... E 24876 different pixels found (99.65% different). E E Extension HDU 2: E Extension names differ: E a: CON E b: ERR E E Headers contain differences: E Keyword BITPIX has different values: E a> 32 E b> -32 E ? + E Keyword EXTNAME has different values: E a> CON E b> ERR E E Data contains differences: E Data differs at [1, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [2, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [3, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [4, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [5, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [6, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [7, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [8, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [9, 1]: E (int32) a> 1023 E (float32) b> nan E Data differs at [10, 1]: E (int32) a> 1023 E (float32) b> nan E ... E 24964 different pixels found (100.00% different). E E Extension HDU 3: E Extension names differ: E a: WHT E b: CON E E Headers contain differences: E Keyword BITPIX has different values: E a> -32 E ? - E b> 32 E Keyword EXTNAME has different values: E a> WHT E b> CON E E Data contains differences: E Data differs at [1, 1]: E (float32) a> 2.5655375 E (int32) b> 1023 E Data differs at [2, 1]: E (float32) a> 4.8111296 E (int32) b> 1023 E Data differs at [3, 1]: E (float32) a> 4.814897 E (int32) b> 1023 E Data differs at [4, 1]: E (float32) a> 4.8190246 E (int32) b> 1023 E Data differs at [5, 1]: E (float32) a> 4.8231177 E (int32) b> 1023 E Data differs at [6, 1]: E (float32) a> 4.8271565 E (int32) b> 1023 E Data differs at [7, 1]: E (float32) a> 4.8311424 E (int32) b> 1023 E Data differs at [8, 1]: E (float32) a> 4.835076 E (int32) b> 1023 E Data differs at [9, 1]: E (float32) a> 4.8389535 E (int32) b> 1023 E Data differs at [10, 1]: E (float32) a> 4.842779 E (int32) b> 1023 E ... E 24964 different pixels found (100.00% different). E E Extension HDU 4: E Extension types differ: E a: BINTABLE E b: IMAGE E Extension names differ: E a: HDRTAB E b: WHT E E Headers contain differences: E Headers have different number of cards: E a: 788 E b: 9 E Extra keyword 'TFIELDS' in a: 389 E Extra keyword 'TTYPE1' in a: 'DATE' E Extra keyword 'TTYPE10' in a: 'DATAMODL' E Extra keyword 'TTYPE100' in a: 'EXPEND' E Extra keyword 'TTYPE101' in a: 'MJD-END' E Extra keyword 'TTYPE102' in a: 'TDB-BEG' E Extra keyword 'TTYPE103' in a: 'TDB-MID' E Extra keyword 'TTYPE104' in a: 'TDB-END' E Extra keyword 'TTYPE105' in a: 'READPATT' E Extra keyword 'TTYPE106' in a: 'EXSEGNUM' E Extra keyword 'TTYPE107' in a: 'EXSEGTOT' E Extra keyword 'TTYPE108' in a: 'NOUTPUTS' E Extra keyword 'TTYPE109' in a: 'NINTS' E Extra keyword 'TTYPE11' in a: 'TELESCOP' E Extra keyword 'TTYPE110' in a: 'INTSTART' E Extra keyword 'TTYPE111' in a: 'INTEND' E Extra keyword 'TTYPE112' in a: 'NGROUPS' E Extra keyword 'TTYPE113' in a: 'NFRAMES' E Extra keyword 'TTYPE114' in a: 'MIRNGRPS' E Extra keyword 'TTYPE115' in a: 'MIRNFRMS' E Extra keyword 'TTYPE116' in a: 'FRMDIVSR' E Extra keyword 'TTYPE117' in a: 'GROUPGAP' E Extra keyword 'TTYPE118' in a: 'DRPFRMS1' E Extra keyword 'TTYPE119' in a: 'DRPFRMS3' E Extra keyword 'TTYPE12' in a: 'HGA_MOVE' E Extra keyword 'TTYPE120' in a: 'NSAMPLES' E Extra keyword 'TTYPE121' in a: 'TSAMPLE' E Extra keyword 'TTYPE122' in a: 'TFRAME' E Extra keyword 'TTYPE123' in a: 'TGROUP' E Extra keyword 'TTYPE124' in a: 'EFFINTTM' E Extra keyword 'TTYPE125' in a: 'EFFEXPTM' E Extra keyword 'TTYPE126' in a: 'XPOSURE' E Extra keyword 'TTYPE127' in a: 'DURATION' E Extra keyword 'TTYPE128' in a: 'TELAPSE' E Extra keyword 'TTYPE129' in a: 'NRSTSTRT' E Extra keyword 'TTYPE13' in a: 'HGA_STRT' E Extra keyword 'TTYPE130' in a: 'NRESETS' E Extra keyword 'TTYPE131' in a: 'ZEROFRAM' E Extra keyword 'TTYPE132' in a: 'DATAPROB' E Extra keyword 'TTYPE133' in a: 'SCA_NUM' E Extra keyword 'TTYPE134' in a: 'DATAMODE' E Extra keyword 'TTYPE135' in a: 'NRS_NORM' E Extra keyword 'TTYPE136' in a: 'NRS_REF' E Extra keyword 'TTYPE137' in a: 'SCTARATE' E Extra keyword 'TTYPE138' in a: 'GAINFACT' E Extra keyword 'TTYPE139' in a: 'IS_IMPRT' E Extra keyword 'TTYPE14' in a: 'HGA_STOP' E Extra keyword 'TTYPE140' in a: 'IS_PSF' E Extra keyword 'TTYPE141' in a: 'SELFREF' E Extra keyword 'TTYPE142' in a: 'SUBARRAY' E Extra keyword 'TTYPE143' in a: 'SUBSTRT1' E Extra keyword 'TTYPE144' in a: 'SUBSTRT2' E Extra keyword 'TTYPE145' in a: 'SUBSIZE1' E Extra keyword 'TTYPE146' in a: 'SUBSIZE2' E Extra keyword 'TTYPE147' in a: 'FASTAXIS' E Extra keyword 'TTYPE148' in a: 'SLOWAXIS' E Extra keyword 'TTYPE149' in a: 'DETXCOR' E Extra keyword 'TTYPE15' in a: 'PWFSEET' E Extra keyword 'TTYPE150' in a: 'DETYCOR' E Extra keyword 'TTYPE151' in a: 'DETXSIZ' E Extra keyword 'TTYPE152' in a: 'DETYSIZ' E Extra keyword 'TTYPE153' in a: 'PATTTYPE' E Extra keyword 'TTYPE154' in a: 'PRIDTYPE' E Extra keyword 'TTYPE155' in a: 'PRIDTPTS' E Extra keyword 'TTYPE156' in a: 'PATT_NUM' E Extra keyword 'TTYPE157' in a: 'PATTSTRT' E Extra keyword 'TTYPE158' in a: 'NUMDTHPT' E Extra keyword 'TTYPE159' in a: 'PATTNPTS' E Extra keyword 'TTYPE16' in a: 'NWFSEST' E Extra keyword 'TTYPE160' in a: 'PATTSIZE' E Extra keyword 'TTYPE161' in a: 'SMGRDPAT' E Extra keyword 'TTYPE162' in a: 'SUBPXPTS' E Extra keyword 'TTYPE163' in a: 'SUBPXPAT' E Extra keyword 'TTYPE164' in a: 'SPEC_NUM' E Extra keyword 'TTYPE165' in a: 'SPECNSTP' E Extra keyword 'TTYPE166' in a: 'SPECSTEP' E Extra keyword 'TTYPE167' in a: 'SPCOFFST' E Extra keyword 'TTYPE168' in a: 'SPAT_NUM' E Extra keyword 'TTYPE169' in a: 'SPATNSTP' E Extra keyword 'TTYPE17' in a: 'ASNPOOL' E Extra keyword 'TTYPE170' in a: 'SPATSTEP' E Extra keyword 'TTYPE171' in a: 'SPTOFFST' E Extra keyword 'TTYPE172' in a: 'XOFFSET' E Extra keyword 'TTYPE173' in a: 'YOFFSET' E Extra keyword 'TTYPE174' in a: 'REFFRAME' E Extra keyword 'TTYPE175' in a: 'EPH_TYPE' E Extra keyword 'TTYPE176' in a: 'EPH_TIME' E Extra keyword 'TTYPE177' in a: 'JWST_X' E Extra keyword 'TTYPE178' in a: 'JWST_Y' E Extra keyword 'TTYPE179' in a: 'JWST_Z' E Extra keyword 'TTYPE18' in a: 'ASNTABLE' E Extra keyword 'TTYPE180' in a: 'JWST_DX' E Extra keyword 'TTYPE181' in a: 'JWST_DY' E Extra keyword 'TTYPE182' in a: 'JWST_DZ' E Extra keyword 'TTYPE183' in a: 'APERNAME' E Extra keyword 'TTYPE184' in a: 'PPS_APER' E Extra keyword 'TTYPE185' in a: 'PA_APER' E Extra keyword 'TTYPE186' in a: 'VA_RA' E Extra keyword 'TTYPE187' in a: 'VA_DEC' E Extra keyword 'TTYPE188' in a: 'VA_SCALE' E Extra keyword 'TTYPE189' in a: 'BARTDELT' E Extra keyword 'TTYPE19' in a: 'TITLE' E Extra keyword 'TTYPE190' in a: 'BSTRTIME' E Extra keyword 'TTYPE191' in a: 'BENDTIME' E Extra keyword 'TTYPE192' in a: 'BMIDTIME' E Extra keyword 'TTYPE193' in a: 'HELIDELT' E Extra keyword 'TTYPE194' in a: 'HSTRTIME' E Extra keyword 'TTYPE195' in a: 'HENDTIME' E Extra keyword 'TTYPE196' in a: 'HMIDTIME' E Extra keyword 'TTYPE197' in a: 'FAM_LA1' E Extra keyword 'TTYPE198' in a: 'FASTEP1' E Extra keyword 'TTYPE199' in a: 'FAUNIT1' E Extra keyword 'TTYPE2' in a: 'ORIGIN' E Extra keyword 'TTYPE20' in a: 'PI_NAME' E Extra keyword 'TTYPE200' in a: 'FAPHASE1' E Extra keyword 'TTYPE201' in a: 'FA1VALUE' E Extra keyword 'TTYPE202' in a: 'FAM_LA2' E Extra keyword 'TTYPE203' in a: 'FASTEP2' E Extra keyword 'TTYPE204' in a: 'FAUNIT2' E Extra keyword 'TTYPE205' in a: 'FAPHASE2' E Extra keyword 'TTYPE206' in a: 'FA2VALUE' E Extra keyword 'TTYPE207' in a: 'FAM_LA3' E Extra keyword 'TTYPE208' in a: 'FASTEP3' E Extra keyword 'TTYPE209' in a: 'FAUNIT3' E Extra keyword 'TTYPE21' in a: 'CATEGORY' E Extra keyword 'TTYPE210' in a: 'FAPHASE3' E Extra keyword 'TTYPE211' in a: 'FA3VALUE' E Extra keyword 'TTYPE212' in a: 'RMA_POS' E Extra keyword 'TTYPE213' in a: 'FCSRLPOS' E Extra keyword 'TTYPE214' in a: 'GS_ORDER' E Extra keyword 'TTYPE215' in a: 'GSSTRTTM' E Extra keyword 'TTYPE216' in a: 'GSENDTIM' E Extra keyword 'TTYPE217' in a: 'GDSTARID' E Extra keyword 'TTYPE218' in a: 'GS_RA' E Extra keyword 'TTYPE219' in a: 'GS_DEC' E Extra keyword 'TTYPE22' in a: 'SUBCAT' E Extra keyword 'TTYPE220' in a: 'GS_URA' E Extra keyword 'TTYPE221' in a: 'GS_UDEC' E Extra keyword 'TTYPE222' in a: 'GS_MAG' E Extra keyword 'TTYPE223' in a: 'GS_UMAG' E Extra keyword 'TTYPE224' in a: 'PCS_MODE' E Extra keyword 'TTYPE225' in a: 'VISITEND' E Extra keyword 'TTYPE226' in a: 'GSACSTAT' E Extra keyword 'TTYPE227' in a: 'GSCENTX' E Extra keyword 'TTYPE228' in a: 'GSCENTY' E Extra keyword 'TTYPE229' in a: 'GS_EPOCH' E Extra keyword 'TTYPE23' in a: 'SCICAT' E Extra keyword 'TTYPE230' in a: 'GS_MURA' E Extra keyword 'TTYPE231' in a: 'GS_MUDEC' E Extra keyword 'TTYPE232' in a: 'GS_PARA' E Extra keyword 'TTYPE233' in a: 'CRDS_VER' E Extra keyword 'TTYPE234' in a: 'CRDS_CTX' E Extra keyword 'TTYPE235' in a: 'R_AREA' E Extra keyword 'TTYPE236' in a: 'R_MSAOPE' E Extra keyword 'TTYPE237' in a: 'R_BARSHA' E Extra keyword 'TTYPE238' in a: 'R_CAMERA' E Extra keyword 'TTYPE239' in a: 'R_COLLIM' E Extra keyword 'TTYPE24' in a: 'CONT_ID' E Extra keyword 'TTYPE240' in a: 'R_CUBPAR' E Extra keyword 'TTYPE241' in a: 'R_DARK' E Extra keyword 'TTYPE242' in a: 'R_DISPER' E Extra keyword 'TTYPE243' in a: 'R_DISTOR' E Extra keyword 'TTYPE244' in a: 'R_DRZPAR' E Extra keyword 'TTYPE245' in a: 'R_EXTR1D' E Extra keyword 'TTYPE246' in a: 'R_FILOFF' E Extra keyword 'TTYPE247' in a: 'R_FLAT' E Extra keyword 'TTYPE248' in a: 'R_DFLAT' E Extra keyword 'TTYPE249' in a: 'R_FFLAT' E Extra keyword 'TTYPE25' in a: 'DATE-OBS' E Extra keyword 'TTYPE250' in a: 'R_SFLAT' E Extra keyword 'TTYPE251' in a: 'R_FORE' E Extra keyword 'TTYPE252' in a: 'R_FPA' E Extra keyword 'TTYPE253' in a: 'R_FRINGE' E Extra keyword 'TTYPE254' in a: 'R_GAIN' E Extra keyword 'TTYPE255' in a: 'R_IFUFOR' E Extra keyword 'TTYPE256' in a: 'R_IFUPOS' E Extra keyword 'TTYPE257' in a: 'R_IFUSLI' E Extra keyword 'TTYPE258' in a: 'R_IPC' E Extra keyword 'TTYPE259' in a: 'R_LASTFR' E Extra keyword 'TTYPE26' in a: 'TIME-OBS' E Extra keyword 'TTYPE260' in a: 'R_LINEAR' E Extra keyword 'TTYPE261' in a: 'R_MASK' E Extra keyword 'TTYPE262' in a: 'R_MSA' E Extra keyword 'TTYPE263' in a: 'R_OTE' E Extra keyword 'TTYPE264' in a: 'R_PTHLOS' E Extra keyword 'TTYPE265' in a: 'R_PERSAT' E Extra keyword 'TTYPE266' in a: 'R_PHOTOM' E Extra keyword 'TTYPE267' in a: 'R_PSFMAS' E Extra keyword 'TTYPE268' in a: 'R_READNO' E Extra keyword 'TTYPE269' in a: 'R_REFPIX' E Extra keyword 'TTYPE27' in a: 'DATE-BEG' E Extra keyword 'TTYPE270' in a: 'R_REGION' E Extra keyword 'TTYPE271' in a: 'R_RESAMP' E Extra keyword 'TTYPE272' in a: 'R_RESOL' E Extra keyword 'TTYPE273' in a: 'R_RESET' E Extra keyword 'TTYPE274' in a: 'R_RSCD' E Extra keyword 'TTYPE275' in a: 'R_SATURA' E Extra keyword 'TTYPE276' in a: 'R_SPCWCS' E Extra keyword 'TTYPE277' in a: 'R_STRAY' E Extra keyword 'TTYPE278' in a: 'R_SUPERB' E Extra keyword 'TTYPE279' in a: 'R_THRPUT' E Extra keyword 'TTYPE28' in a: 'DATE-END' E Extra keyword 'TTYPE280' in a: 'R_TRPDEN' E Extra keyword 'TTYPE281' in a: 'R_TRPPAR' E Extra keyword 'TTYPE282' in a: 'R_TSPHOT' E Extra keyword 'TTYPE283' in a: 'R_V2V3' E Extra keyword 'TTYPE284' in a: 'R_WAVCOR' E Extra keyword 'TTYPE285' in a: 'R_WAVRAN' E Extra keyword 'TTYPE286' in a: 'S_PSFALI' E Extra keyword 'TTYPE287' in a: 'S_AMIANA' E Extra keyword 'TTYPE288' in a: 'S_AMIAVG' E Extra keyword 'TTYPE289' in a: 'S_AMINOR' E Extra keyword 'TTYPE29' in a: 'OBS_ID' E Extra keyword 'TTYPE290' in a: 'S_WCS' E Extra keyword 'TTYPE291' in a: 'S_MTWCS' E Extra keyword 'TTYPE292' in a: 'S_BKDSUB' E Extra keyword 'TTYPE293' in a: 'S_BARSHA' E Extra keyword 'TTYPE294' in a: 'S_COMB1D' E Extra keyword 'TTYPE295' in a: 'S_IFUCUB' E Extra keyword 'TTYPE296' in a: 'S_DARK' E Extra keyword 'TTYPE297' in a: 'S_DQINIT' E Extra keyword 'TTYPE298' in a: 'S_TELEMI' E Extra keyword 'TTYPE299' in a: 'S_ERRINI' E Extra keyword 'TTYPE3' in a: 'TIMESYS' E Extra keyword 'TTYPE30' in a: 'VISIT_ID' E Extra keyword 'TTYPE300' in a: 'S_EXTR1D' E Extra keyword 'TTYPE301' in a: 'S_EXTR2D' E Extra keyword 'TTYPE302' in a: 'S_FRSTFR' E Extra keyword 'TTYPE303' in a: 'S_FLAT' E Extra keyword 'TTYPE304' in a: 'S_FRINGE' E Extra keyword 'TTYPE305' in a: 'S_GANSCL' E Extra keyword 'TTYPE306' in a: 'S_GRPSCL' E Extra keyword 'TTYPE307' in a: 'S_GUICDS' E Extra keyword 'TTYPE308' in a: 'S_IMPRNT' E Extra keyword 'TTYPE309' in a: 'S_IPC' E Extra keyword 'TTYPE31' in a: 'PROGRAM' E Extra keyword 'TTYPE310' in a: 'S_JUMP' E Extra keyword 'TTYPE311' in a: 'S_KLIP' E Extra keyword 'TTYPE312' in a: 'S_LASTFR' E Extra keyword 'TTYPE313' in a: 'S_LINEAR' E Extra keyword 'TTYPE314' in a: 'S_MSBSUB' E Extra keyword 'TTYPE315' in a: 'S_MRSMAT' E Extra keyword 'TTYPE316' in a: 'S_MSAFLG' E Extra keyword 'TTYPE317' in a: 'S_OUTLIR' E Extra keyword 'TTYPE318' in a: 'S_PTHLOS' E Extra keyword 'TTYPE319' in a: 'S_PERSIS' E Extra keyword 'TTYPE32' in a: 'OBSERVTN' E Extra keyword 'TTYPE320' in a: 'S_PHOTOM' E Extra keyword 'TTYPE321' in a: 'S_RAMP' E Extra keyword 'TTYPE322' in a: 'S_REFPIX' E Extra keyword 'TTYPE323' in a: 'S_RESAMP' E Extra keyword 'TTYPE324' in a: 'S_RESET' E Extra keyword 'TTYPE325' in a: 'S_RSCD' E Extra keyword 'TTYPE326' in a: 'S_SATURA' E Extra keyword 'TTYPE327' in a: 'S_SKYMAT' E Extra keyword 'TTYPE328' in a: 'S_SRCCAT' E Extra keyword 'TTYPE329' in a: 'S_SRCTYP' E Extra keyword 'TTYPE33' in a: 'VISIT' E Extra keyword 'TTYPE330' in a: 'S_PSFSTK' E Extra keyword 'TTYPE331' in a: 'S_STRAY' E Extra keyword 'TTYPE332' in a: 'S_SUPERB' E Extra keyword 'TTYPE333' in a: 'S_TSPHOT' E Extra keyword 'TTYPE334' in a: 'S_TWKREG' E Extra keyword 'TTYPE335' in a: 'S_WAVCOR' E Extra keyword 'TTYPE336' in a: 'S_WFSCOM' E Extra keyword 'TTYPE337' in a: 'S_WHTLIT' E Extra keyword 'TTYPE338' in a: 'BKGLEVEL' E Extra keyword 'TTYPE339' in a: 'BKGSUB' E Extra keyword 'TTYPE34' in a: 'VISITGRP' E Extra keyword 'TTYPE340' in a: 'BUNIT' E Extra keyword 'TTYPE341' in a: 'PHOTMJSR' E Extra keyword 'TTYPE342' in a: 'PHOTUJA2' E Extra keyword 'TTYPE343' in a: 'PIXAR_SR' E Extra keyword 'TTYPE344' in a: 'PIXAR_A2' E Extra keyword 'TTYPE345' in a: 'RADESYS' E Extra keyword 'TTYPE346' in a: 'RA_V1' E Extra keyword 'TTYPE347' in a: 'DEC_V1' E Extra keyword 'TTYPE348' in a: 'PA_V3' E Extra keyword 'TTYPE349' in a: 'WCSAXES' E Extra keyword 'TTYPE35' in a: 'SEQ_ID' E Extra keyword 'TTYPE350' in a: 'CRPIX1' E Extra keyword 'TTYPE351' in a: 'CRPIX2' E Extra keyword 'TTYPE352' in a: 'CRPIX3' E Extra keyword 'TTYPE353' in a: 'CRVAL1' E Extra keyword 'TTYPE354' in a: 'CRVAL2' E Extra keyword 'TTYPE355' in a: 'CRVAL3' E Extra keyword 'TTYPE356' in a: 'CTYPE1' E Extra keyword 'TTYPE357' in a: 'CTYPE2' E Extra keyword 'TTYPE358' in a: 'CTYPE3' E Extra keyword 'TTYPE359' in a: 'CUNIT1' E Extra keyword 'TTYPE36' in a: 'ACT_ID' E Extra keyword 'TTYPE360' in a: 'CUNIT2' E Extra keyword 'TTYPE361' in a: 'CUNIT3' E Extra keyword 'TTYPE362' in a: 'CDELT1' E Extra keyword 'TTYPE363' in a: 'CDELT2' E Extra keyword 'TTYPE364' in a: 'CDELT3' E Extra keyword 'TTYPE365' in a: 'PC1_1' E Extra keyword 'TTYPE366' in a: 'PC1_2' E Extra keyword 'TTYPE367' in a: 'PC1_3' E Extra keyword 'TTYPE368' in a: 'PC2_1' E Extra keyword 'TTYPE369' in a: 'PC2_2' E Extra keyword 'TTYPE37' in a: 'EXPOSURE' E Extra keyword 'TTYPE370' in a: 'PC2_3' E Extra keyword 'TTYPE371' in a: 'PC3_1' E Extra keyword 'TTYPE372' in a: 'PC3_2' E Extra keyword 'TTYPE373' in a: 'PC3_3' E Extra keyword 'TTYPE374' in a: 'CD1_1' E Extra keyword 'TTYPE375' in a: 'CD1_2' E Extra keyword 'TTYPE376' in a: 'CD2_1' E Extra keyword 'TTYPE377' in a: 'CD2_2' E Extra keyword 'TTYPE378' in a: 'S_REGION' E Extra keyword 'TTYPE379' in a: 'WAVSTART' E Extra keyword 'TTYPE38' in a: 'BKGDTARG' E Extra keyword 'TTYPE380' in a: 'WAVEND' E Extra keyword 'TTYPE381' in a: 'DISPAXIS' E Extra keyword 'TTYPE382' in a: 'SPORDER' E Extra keyword 'TTYPE383' in a: 'V2_REF' E Extra keyword 'TTYPE384' in a: 'V3_REF' E Extra keyword 'TTYPE385' in a: 'VPARITY' E Extra keyword 'TTYPE386' in a: 'V3I_YANG' E Extra keyword 'TTYPE387' in a: 'RA_REF' E Extra keyword 'TTYPE388' in a: 'DEC_REF' E Extra keyword 'TTYPE389' in a: 'ROLL_REF' E Extra keyword 'TTYPE39' in a: 'TEMPLATE' E Extra keyword 'TTYPE4' in a: 'FILENAME' E Extra keyword 'TTYPE40' in a: 'OBSLABEL' E Extra keyword 'TTYPE41' in a: 'ENG_QUAL' E Extra keyword 'TTYPE42' in a: 'ENGQLPTG' E Extra keyword 'TTYPE43' in a: 'VISITYPE' E Extra keyword 'TTYPE44' in a: 'VSTSTART' E Extra keyword 'TTYPE45' in a: 'VISITSTA' E Extra keyword 'TTYPE46' in a: 'NEXPOSUR' E Extra keyword 'TTYPE47' in a: 'INTARGET' E Extra keyword 'TTYPE48' in a: 'TARGOOPP' E Extra keyword 'TTYPE49' in a: 'TSOVISIT' E Extra keyword 'TTYPE5' in a: 'FILETYPE' E Extra keyword 'TTYPE50' in a: 'EXP_ONLY' E Extra keyword 'TTYPE51' in a: 'TARGPROP' E Extra keyword 'TTYPE52' in a: 'TARGNAME' E Extra keyword 'TTYPE53' in a: 'TARGTYPE' E Extra keyword 'TTYPE54' in a: 'TARG_RA' E Extra keyword 'TTYPE55' in a: 'TARG_DEC' E Extra keyword 'TTYPE56' in a: 'TARGURA' E Extra keyword 'TTYPE57' in a: 'TARGUDEC' E Extra keyword 'TTYPE58' in a: 'MU_RA' E Extra keyword 'TTYPE59' in a: 'MU_DEC' E Extra keyword 'TTYPE6' in a: 'SDP_VER' E Extra keyword 'TTYPE60' in a: 'MU_EPOCH' E Extra keyword 'TTYPE61' in a: 'PROP_RA' E Extra keyword 'TTYPE62' in a: 'PROP_DEC' E Extra keyword 'TTYPE63' in a: 'SRCTYAPT' E Extra keyword 'TTYPE64' in a: 'INSTRUME' E Extra keyword 'TTYPE65' in a: 'DETECTOR' E Extra keyword 'TTYPE66' in a: 'MODULE' E Extra keyword 'TTYPE67' in a: 'CHANNEL' E Extra keyword 'TTYPE68' in a: 'FILTER' E Extra keyword 'TTYPE69' in a: 'PUPIL' E Extra keyword 'TTYPE7' in a: 'PRD_VER' E Extra keyword 'TTYPE70' in a: 'PILIN' E Extra keyword 'TTYPE71' in a: 'GRATING' E Extra keyword 'TTYPE72' in a: 'BAND' E Extra keyword 'TTYPE73' in a: 'FXD_SLIT' E Extra keyword 'TTYPE74' in a: 'FOCUSPOS' E Extra keyword 'TTYPE75' in a: 'PREIMAGE' E Extra keyword 'TTYPE76' in a: 'CCCSTATE' E Extra keyword 'TTYPE77' in a: 'CORONMSK' E Extra keyword 'TTYPE78' in a: 'MSASTATE' E Extra keyword 'TTYPE79' in a: 'MSAMETFL' E Extra keyword 'TTYPE8' in a: 'CAL_VER' E Extra keyword 'TTYPE80' in a: 'MSAMETID' E Extra keyword 'TTYPE81' in a: 'MSACONID' E Extra keyword 'TTYPE82' in a: 'LAMP' E Extra keyword 'TTYPE83' in a: 'OPMODE' E Extra keyword 'TTYPE84' in a: 'GWA_XTIL' E Extra keyword 'TTYPE85' in a: 'GWA_YTIL' E Extra keyword 'TTYPE86' in a: 'GWA_XP_V' E Extra keyword 'TTYPE87' in a: 'GWA_YP_V' E Extra keyword 'TTYPE88' in a: 'GWA_PXAV' E Extra keyword 'TTYPE89' in a: 'GWA_PYAV' E Extra keyword 'TTYPE9' in a: 'CAL_VCS' E Extra keyword 'TTYPE90' in a: 'GWA_TILT' E Extra keyword 'TTYPE91' in a: 'FWCPOS' E Extra keyword 'TTYPE92' in a: 'PWCPOS' E Extra keyword 'TTYPE93' in a: 'EXPCOUNT' E Extra keyword 'TTYPE94' in a: 'EXPRIPAR' E Extra keyword 'TTYPE95' in a: 'EXP_TYPE' E Extra keyword 'TTYPE96' in a: 'EXPSTART' E Extra keyword 'TTYPE97' in a: 'MJD-BEG' E Extra keyword 'TTYPE98' in a: 'EXPMID' E Extra keyword 'TTYPE99' in a: 'MJD-AVG' E Keyword BITPIX has different values: E a> 8 E b> -32 E Keyword EXTNAME has different values: E a> HDRTAB E b> WHT E Keyword NAXIS2 has different values: E a> 2 E b> 158 E Keyword NAXIS2 has different comments: E a> length of dimension 2 E Keyword PCOUNT has different comments: E a> number of group parameters E ? ------ E b> number of parameters E Keyword XTENSION has different values: E a> BINTABLE E b> IMAGE E Keyword XTENSION has different comments: E a> binary table extension E b> Image extension E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff627879970>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:70: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[jump] | 4.91 | |
|
run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...p.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'jump' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_image_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_jump.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_jump.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 3 (GROUPDQ, 1): E E Data contains differences: E Data differs at [1091, 19, 2, 1]: E a> 0 E b> 4 E Data differs at [1092, 19, 2, 1]: E a> 0 E b> 4 E Data differs at [1999, 19, 2, 1]: E a> 0 E b> 4 E Data differs at [1090, 20, 2, 1]: E a> 0 E b> 4 E Data differs at [1998, 20, 2, 1]: E a> 0 E b> 4 E Data differs at [2000, 20, 2, 1]: E a> 0 E b> 4 E Data differs at [1091, 21, 2, 1]: E a> 0 E b> 4 E Data differs at [1999, 21, 2, 1]: E a> 0 E b> 4 E Data differs at [1092, 22, 2, 1]: E a> 0 E b> 4 E Data differs at [124, 24, 2, 1]: E a> 0 E b> 4 E ... E 6746 different pixels found (0.02% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6298b7610>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:100: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[rate] | 1.28 | |
|
run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...e.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'rate' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_image_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_rate.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 0.59331167 E b> 0.5123616 E Data differs at [974, 5]: E a> 0.26042837 E b> 0.26019776 E Data differs at [975, 5]: E a> 0.6749324 E b> 0.35884577 E Data differs at [1557, 5]: E a> 0.33364332 E b> 0.33779904 E Data differs at [1558, 5]: E a> 0.23502852 E b> 0.23446178 E Data differs at [1559, 5]: E a> 0.5274891 E b> 0.52741677 E Data differs at [1648, 5]: E a> 0.40663427 E b> 0.40685257 E Data differs at [1649, 5]: E a> 0.4115209 E b> 0.41310066 E Data differs at [1650, 5]: E a> 0.41427472 E b> 0.41430134 E Data differs at [974, 6]: E a> 0.53941905 E b> 0.5269087 E ... E 8589 different pixels found (0.20% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [510, 5]: E a> 0.10418983 E b> 0.10533949 E Data differs at [825, 5]: E a> 0.07990681 E b> 0.06952212 E Data differs at [826, 5]: E a> 0.2582703 E b> 0.20624045 E Data differs at [973, 5]: E a> 0.057245895 E b> 0.09001816 E Data differs at [974, 5]: E a> 0.08661551 E b> 0.08512432 E Data differs at [975, 5]: E a> 0.053677496 E b> 0.086430885 E Data differs at [1557, 5]: E a> 0.072490275 E b> 0.067940824 E Data differs at [1558, 5]: E a> 0.07524172 E b> 0.07166626 E Data differs at [1559, 5]: E a> 0.08139411 E b> 0.079832405 E Data differs at [1648, 5]: E a> 0.075554565 E b> 0.07508268 E ... E 16290 different pixels found (0.39% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [974, 4]: E a> 2148007939 E ? - E b> 2148007943 E ? + E Data differs at [410, 5]: E a> 1049603 E ? ^ E b> 1049607 E ? ^ E Data differs at [973, 5]: E a> 0 E b> 4 E Data differs at [975, 5]: E a> 0 E b> 4 E Data differs at [974, 6]: E a> 0 E b> 4 E Data differs at [1967, 6]: E a> 1049603 E ? ^ E b> 1049607 E ? ^ E Data differs at [1989, 6]: E a> 0 E b> 4 E Data differs at [351, 7]: E a> 1049603 E ? ^ E b> 1049607 E ? ^ E Data differs at [1792, 7]: E a> 0 E b> 4 E Data differs at [1988, 7]: E a> 0 E b> 4 E ... E 6228 different pixels found (0.15% different). E E Extension HDU 4 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [510, 5]: E a> 0.003220742 E b> 0.0034616315 E Data differs at [825, 5]: E a> 0.0037485342 E b> 0.0021967604 E Data differs at [826, 5]: E a> 0.059899975 E b> 0.03573155 E Data differs at [973, 5]: E a> 0.0017368946 E b> 0.0019424778 E Data differs at [974, 5]: E a> 0.0014752131 E b> 0.0012191167 E Data differs at [975, 5]: E a> 0.0014157583 E b> 0.0016082363 E Data differs at [1557, 5]: E a> 0.0014082018 E b> 0.0007693181 E Data differs at [1558, 5]: E a> 0.0014686888 E b> 0.0009434247 E Data differs at [1559, 5]: E a> 0.0028980877 E b> 0.0026462993 E Data differs at [1648, 5]: E a> 0.0017507401 E b> 0.0016796568 E ... E 16256 different pixels found (0.39% different). E E Extension HDU 5 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 0.0015401981 E b> 0.0061607915 E Data differs at [975, 5]: E a> 0.0014655153 E b> 0.0058620614 E Data differs at [974, 6]: E a> 0.0035577808 E b> 0.014231123 E Data differs at [1989, 6]: E a> 0.0014485614 E b> 0.0023176984 E Data differs at [1792, 7]: E a> 0.0017518823 E b> 0.004671686 E Data differs at [1988, 7]: E a> 0.0017409994 E b> 0.0027855989 E Data differs at [1990, 7]: E a> 0.0013844654 E b> 0.0022151445 E Data differs at [68, 8]: E a> 0.0022785563 E b> 0.009114225 E Data differs at [72, 8]: E a> 0.0026900165 E b> 0.0043040263 E Data differs at [539, 8]: E a> 0.001805673 E b> 0.004815128 E ... E 4186 different pixels found (0.10% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff62791eb20>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:100: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[flat_field] | 1.54 | |
|
run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'flat_field' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_image_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_flat_field.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_flat_field.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 0.53642535 E b> 0.46323672 E Data differs at [974, 5]: E a> 0.2309414 E b> 0.2307369 E Data differs at [975, 5]: E a> 0.56959337 E b> 0.3028395 E Data differs at [1557, 5]: E a> 0.28937265 E b> 0.29297695 E Data differs at [1558, 5]: E a> 0.19995241 E b> 0.19947025 E Data differs at [1559, 5]: E a> 0.48059523 E ? -- E b> 0.4805293 E ? + E Data differs at [1648, 5]: E a> 0.3537578 E b> 0.35394773 E Data differs at [1649, 5]: E a> 0.3662209 E b> 0.36762676 E Data differs at [1650, 5]: E a> 0.3592237 E b> 0.35924676 E Data differs at [974, 6]: E a> 0.5304327 E b> 0.5181308 E ... E 8589 different pixels found (0.20% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [510, 5]: E a> 0.08226648 E b> 0.08317346 E Data differs at [825, 5]: E a> 0.06715884 E b> 0.058443323 E Data differs at [826, 5]: E a> 0.26741248 E b> 0.21757992 E Data differs at [973, 5]: E a> 0.051837027 E b> 0.08142515 E Data differs at [974, 5]: E a> 0.07681828 E b> 0.075496085 E Data differs at [975, 5]: E a> 0.04539584 E b> 0.072958186 E Data differs at [1557, 5]: E a> 0.062890016 E b> 0.05894595 E Data differs at [1558, 5]: E a> 0.06402094 E b> 0.060979463 E Data differs at [1559, 5]: E a> 0.074203275 E b> 0.07278127 E Data differs at [1648, 5]: E a> 0.065756194 E b> 0.06534586 E ... E 16290 different pixels found (0.39% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [974, 4]: E a> 2148007939 E ? - E b> 2148007943 E ? + E Data differs at [410, 5]: E a> 1311747 E b> 1311751 E Data differs at [973, 5]: E a> 0 E b> 4 E Data differs at [975, 5]: E a> 0 E b> 4 E Data differs at [974, 6]: E a> 0 E b> 4 E Data differs at [1967, 6]: E a> 1311747 E b> 1311751 E Data differs at [1989, 6]: E a> 0 E b> 4 E Data differs at [351, 7]: E a> 1311747 E b> 1311751 E Data differs at [1792, 7]: E a> 0 E b> 4 E Data differs at [1988, 7]: E a> 0 E b> 4 E ... E 6228 different pixels found (0.15% different). E E Extension HDU 4 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [510, 5]: E a> 0.0020062034 E b> 0.0021562537 E Data differs at [825, 5]: E a> 0.002644376 E b> 0.0015496884 E Data differs at [826, 5]: E a> 0.059899975 E b> 0.03573155 E Data differs at [973, 5]: E a> 0.0014197971 E b> 0.0015878478 E Data differs at [974, 5]: E a> 0.0011600635 E b> 0.000958677 E Data differs at [975, 5]: E a> 0.0010083201 E b> 0.0011454053 E Data differs at [1557, 5]: E a> 0.0010592903 E b> 0.0005787034 E Data differs at [1558, 5]: E a> 0.0010630211 E b> 0.00068284065 E Data differs at [1559, 5]: E a> 0.002405711 E b> 0.0021967008 E Data differs at [1648, 5]: E a> 0.0013250302 E b> 0.0012712316 E ... E 16256 different pixels found (0.39% different). E E Extension HDU 5 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 0.0012590106 E b> 0.0050360416 E Data differs at [975, 5]: E a> 0.0010437577 E b> 0.0041750306 E Data differs at [974, 6]: E a> 0.0034402276 E b> 0.01376091 E Data differs at [1989, 6]: E a> 0.0014225811 E b> 0.00227613 E Data differs at [1792, 7]: E a> 0.0016252083 E b> 0.0043338886 E Data differs at [1988, 7]: E a> 0.0017263241 E b> 0.0027621184 E Data differs at [1990, 7]: E a> 0.0013285009 E b> 0.0021256013 E Data differs at [68, 8]: E a> 0.0017857525 E b> 0.00714301 E Data differs at [72, 8]: E a> 0.002006081 E b> 0.0032097294 E Data differs at [539, 8]: E a> 0.0014467038 E b> 0.0038578769 E ... E 4186 different pixels found (0.10% different). E E Extension HDU 6 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 8.269414e-06 E b> 6.166832e-06 E Data differs at [975, 5]: E a> 8.704588e-06 E b> 2.4606131e-06 E Data differs at [974, 6]: E a> 8.834569e-06 E b> 8.429534e-06 E Data differs at [1989, 6]: E a> 8.166324e-06 E b> 4.962259e-06 E Data differs at [1792, 7]: E a> 2.7812239e-05 E b> 2.6344867e-06 E Data differs at [1988, 7]: E a> 8.323721e-06 E b> 8.209953e-06 E Data differs at [1990, 7]: E a> 1.0036074e-05 E b> 7.1044137e-06 E Data differs at [68, 8]: E a> 2.06629e-05 E b> 3.7502768e-06 E Data differs at [72, 8]: E a> 9.618403e-06 E b> 5.117893e-06 E Data differs at [539, 8]: E a> 1.974134e-05 E b> 3.4213726e-06 E ... E 4601 different pixels found (0.11% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff629c78ca0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:100: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[cal] | 1.85 | |
|
run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...al.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'cal' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_image_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 0.28533456 E b> 0.24640417 E Data differs at [974, 5]: E a> 0.12284199 E b> 0.12273321 E Data differs at [975, 5]: E a> 0.30297723 E b> 0.16108592 E Data differs at [1557, 5]: E a> 0.15392266 E b> 0.15583985 E Data differs at [1558, 5]: E a> 0.10635838 E b> 0.10610191 E Data differs at [1559, 5]: E a> 0.25563747 E b> 0.25560242 E Data differs at [1648, 5]: E a> 0.1881703 E b> 0.18827133 E Data differs at [1649, 5]: E a> 0.19479966 E b> 0.19554746 E Data differs at [1650, 5]: E a> 0.19107771 E b> 0.19108999 E Data differs at [974, 6]: E a> 0.28214696 E b> 0.27560332 E ... E 8587 different pixels found (0.20% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [510, 5]: E a> 0.04375906 E b> 0.0442415 E Data differs at [825, 5]: E a> 0.035723027 E b> 0.031087082 E Data differs at [826, 5]: E a> 0.14224164 E b> 0.11573478 E Data differs at [973, 5]: E a> 0.027573071 E b> 0.043311544 E Data differs at [974, 5]: E a> 0.040861063 E b> 0.04015776 E Data differs at [975, 5]: E a> 0.024146885 E b> 0.038807806 E Data differs at [1557, 5]: E a> 0.03345236 E b> 0.03135444 E Data differs at [1558, 5]: E a> 0.034053918 E b> 0.032436103 E Data differs at [1559, 5]: E a> 0.03947009 E b> 0.0387137 E Data differs at [1648, 5]: E a> 0.034976933 E b> 0.03475867 E ... E 16290 different pixels found (0.39% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [974, 4]: E a> 2148007939 E ? - E b> 2148007943 E ? + E Data differs at [410, 5]: E a> 1311747 E b> 1311751 E Data differs at [973, 5]: E a> 0 E b> 4 E Data differs at [975, 5]: E a> 0 E b> 4 E Data differs at [974, 6]: E a> 0 E b> 4 E Data differs at [1967, 6]: E a> 1311747 E b> 1311751 E Data differs at [1989, 6]: E a> 0 E b> 4 E Data differs at [351, 7]: E a> 1311747 E b> 1311751 E Data differs at [1792, 7]: E a> 0 E b> 4 E Data differs at [1988, 7]: E a> 0 E b> 4 E ... E 6228 different pixels found (0.15% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [510, 5]: E a> 0.0005676297 E b> 0.0006100845 E Data differs at [825, 5]: E a> 0.0007481925 E b> 0.0004384646 E Data differs at [826, 5]: E a> 0.016947934 E b> 0.010109787 E Data differs at [973, 5]: E a> 0.00040171348 E b> 0.0004492613 E Data differs at [974, 5]: E a> 0.0003282252 E b> 0.00027124543 E Data differs at [975, 5]: E a> 0.00028529135 E b> 0.00032407785 E Data differs at [1557, 5]: E a> 0.00029971267 E b> 0.00016373675 E Data differs at [1558, 5]: E a> 0.0003007683 E b> 0.00019320106 E Data differs at [1559, 5]: E a> 0.00068066525 E b> 0.0006215285 E Data differs at [1648, 5]: E a> 0.0003749004 E b> 0.0003596788 E ... E 16252 different pixels found (0.39% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 0.00035622102 E b> 0.0014248838 E Data differs at [975, 5]: E a> 0.00029531794 E b> 0.0011812717 E Data differs at [974, 6]: E a> 0.0009733686 E b> 0.0038934743 E Data differs at [1989, 6]: E a> 0.0004025012 E b> 0.000644002 E Data differs at [1792, 7]: E a> 0.000459832 E b> 0.0012262185 E Data differs at [1988, 7]: E a> 0.0004884414 E b> 0.0007815062 E Data differs at [1990, 7]: E a> 0.0003758824 E b> 0.0006014118 E Data differs at [68, 8]: E a> 0.0005052559 E b> 0.0020210235 E Data differs at [72, 8]: E a> 0.00056759507 E b> 0.000908152 E Data differs at [539, 8]: E a> 0.0004093264 E b> 0.0010915371 E ... E 4186 different pixels found (0.10% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [973, 5]: E a> 2.3397254e-06 E b> 1.7448266e-06 E Data differs at [975, 5]: E a> 2.4628523e-06 E b> 6.9619915e-07 E Data differs at [974, 6]: E a> 2.4996286e-06 E b> 2.3850293e-06 E Data differs at [1989, 6]: E a> 2.3105572e-06 E b> 1.404008e-06 E Data differs at [1792, 7]: E a> 7.869118e-06 E b> 7.4539446e-07 E Data differs at [1990, 7]: E a> 2.8395793e-06 E b> 2.0101033e-06 E Data differs at [68, 8]: E a> 5.8463042e-06 E b> 1.061093e-06 E Data differs at [72, 8]: E a> 2.7214046e-06 E b> 1.4480427e-06 E Data differs at [539, 8]: E a> 5.5855603e-06 E b> 9.680338e-07 E Data differs at [1791, 8]: E a> 7.4935233e-06 E b> 1.0853282e-06 E ... E 4098 different pixels found (0.10% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff629fea430>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:100: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[i2d] | 2.44 | |
|
run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'i2d' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_image_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Files contain different numbers of HDUs: E a: 5 E b: 9 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 165 E b: 167 E Extra keyword 'PIXFRAC' in b: 1.0 E Extra keyword 'PXSCLRT' in b: 1.0 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 45 E b: 38 E Extra keyword 'DEC_REF' in a: 11.99872146011667 E Extra keyword 'RA_REF' in a: 22.02351078132195 E Extra keyword 'ROLL_REF' in a: 0.005076934167039675 E Extra keyword 'V2_REF' in a: 86.039011 E Extra keyword 'V3I_YANG' in a: -0.07385127 E Extra keyword 'V3_REF' in a: -493.385704 E Extra keyword 'VPARITY' in a: -1 E E Data contains differences: E Data differs at [1575, 4]: E a> 0.15892696 E b> 0.15949532 E Data differs at [1576, 4]: E a> 0.12995401 E b> 0.13077584 E Data differs at [1577, 4]: E a> 0.18045287 E b> 0.18030629 E Data differs at [1578, 4]: E a> 0.2431661 E b> 0.24314773 E Data differs at [1667, 4]: E a> 0.20382182 E ? ^ ^ E b> 0.20382786 E ? ^ ^ E Data differs at [1668, 4]: E a> 0.18906853 E b> 0.18925717 E Data differs at [1669, 4]: E a> 0.19429794 E b> 0.19494659 E Data differs at [1670, 4]: E a> 0.1759614 E b> 0.17597069 E Data differs at [2014, 4]: E a> 0.18720526 E b> 0.18710816 E Data differs at [2015, 4]: E a> 0.19701491 E b> 0.19675109 E ... E 22053 different pixels found (0.51% different). E E Extension HDU 2: E Extension names differ: E a: CON E b: ERR E E Headers contain differences: E Headers have different number of cards: E a: 9 E b: 10 E Extra keyword 'BUNIT' in b: 'MJy/sr' E Keyword BITPIX has different values: E a> 32 E b> -32 E ? + E Keyword EXTNAME has different values: E a> CON E b> ERR E E Data contains differences: E Data differs at [1, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [2, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [3, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [4, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [5, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [6, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [7, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [8, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [9, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [10, 1]: E (int32) a> 0 E (float32) b> nan E ... E 4291045 different pixels found (100.00% different). E E Extension HDU 3: E Extension names differ: E a: WHT E b: CON E E Headers contain differences: E Keyword BITPIX has different values: E a> -32 E ? - E b> 32 E Keyword EXTNAME has different values: E a> WHT E b> CON E E Data contains differences: E Data differs at [1692, 3]: E (float32) a> 0.29514724 E (int32) b> 1 E Data differs at [1693, 3]: E (float32) a> 2.711692 E (int32) b> 1 E Data differs at [1694, 3]: E (float32) a> 5.3501816 E (int32) b> 1 E Data differs at [1695, 3]: E (float32) a> 8.479959 E (int32) b> 1 E Data differs at [1696, 3]: E (float32) a> 12.819407 E (int32) b> 1 E Data differs at [1697, 3]: E (float32) a> 16.052992 E (int32) b> 1 E Data differs at [1698, 3]: E (float32) a> 18.66256 E (int32) b> 1 E Data differs at [1699, 3]: E (float32) a> 19.756235 E (int32) b> 1 E Data differs at [1700, 3]: E (float32) a> 21.325914 E (int32) b> 1 E Data differs at [1701, 3]: E (float32) a> 26.470516 E (int32) b> 1 E ... E 4184184 different pixels found (97.51% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff627984f70>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:100: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120211200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120211200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120211200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120211200 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d | 204.29 | |
|
run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_stage3_i2d(run_image3pipeline, rtdata_module, fitsdiff_default_kwargs): """Test that resampled i2d looks good for NIRCam imaging""" rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" rtdata.output = "jw42424-o002_t001_nircam_clear-f444w_i2d.fits" rtdata.get_truth("truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits") fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_t001_nircam_clear-f444w_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424-o002_t001_nircam_clear-f444w_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Files contain different numbers of HDUs: E a: 6 E b: 10 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 175 E b: 177 E Extra keyword 'PIXFRAC' in b: 1.0 E Extra keyword 'PXSCLRT' in b: 1.0 E Keyword BKGLEVEL has different values: E a> 0.1820854827084115 E b> 0.1817218501964128 E Keyword EFFEXPTM has different values: E a> 150.31478 E b> 450.94434 E Keyword TEXPTIME has different values: E a> 150.31478 E b> 450.94434 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 45 E b: 38 E Extra keyword 'DEC_REF' in a: 12.00106914964813 E Extra keyword 'RA_REF' in a: 22.00070633014625 E Extra keyword 'ROLL_REF' in a: 0.005076934167039675 E Extra keyword 'V2_REF' in a: 86.039011 E Extra keyword 'V3I_YANG' in a: -0.07385127 E Extra keyword 'V3_REF' in a: -493.385704 E Extra keyword 'VPARITY' in a: -1 E Keyword S_REGION has different values: E a> POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 E ? ^ ^ ^ E b> POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 E ? ^ ^ ^ E E Data contains differences: E Data differs at [1565, 4]: E a> 0.0065931263 E b> 0.0070355684 E Data differs at [1566, 4]: E a> -0.034149464 E b> -0.033770543 E Data differs at [1567, 4]: E a> 0.012135209 E b> 0.012490119 E Data differs at [1568, 4]: E a> 0.032276906 E b> 0.03263955 E Data differs at [1569, 4]: E a> 0.006074779 E b> 0.006440426 E Data differs at [1570, 4]: E a> -0.0029260265 E b> -0.0025622686 E Data differs at [1571, 4]: E a> 0.030152451 E b> 0.03051435 E Data differs at [1572, 4]: E a> 0.062396176 E b> 0.06275892 E Data differs at [1573, 4]: E a> 0.039129436 E b> 0.039494347 E Data differs at [1574, 4]: E a> 0.0062194387 E b> 0.006584014 E ... E 7548830 different pixels found (63.17% different). E E Extension HDU 2: E Extension names differ: E a: CON E b: ERR E E Headers contain differences: E Headers have different number of cards: E a: 9 E b: 10 E Extra keyword 'BUNIT' in b: 'MJy/sr' E Keyword BITPIX has different values: E a> 32 E b> -32 E ? + E Keyword EXTNAME has different values: E a> CON E b> ERR E E Data contains differences: E Data differs at [1, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [2, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [3, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [4, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [5, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [6, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [7, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [8, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [9, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [10, 1]: E (int32) a> 0 E (float32) b> nan E ... E 11950380 different pixels found (100.00% different). E E Extension HDU 3: E Extension names differ: E a: WHT E b: CON E E Headers contain differences: E Keyword BITPIX has different values: E a> -32 E ? - E b> 32 E Keyword EXTNAME has different values: E a> WHT E b> CON E E Data contains differences: E Data differs at [1565, 4]: E (float32) a> 4.9420524 E (int32) b> 1 E Data differs at [1566, 4]: E (float32) a> 15.42143 E (int32) b> 1 E Data differs at [1567, 4]: E (float32) a> 25.41092 E (int32) b> 1 E Data differs at [1568, 4]: E (float32) a> 34.322113 E (int32) b> 1 E Data differs at [1569, 4]: E (float32) a> 45.11565 E (int32) b> 1 E Data differs at [1570, 4]: E (float32) a> 52.83835 E (int32) b> 1 E Data differs at [1571, 4]: E (float32) a> 60.860703 E (int32) b> 1 E Data differs at [1572, 4]: E (float32) a> 78.98953 E (int32) b> 1 E Data differs at [1573, 4]: E (float32) a> 90.78503 E (int32) b> 1 E Data differs at [1574, 4]: E (float32) a> 95.463806 E (int32) b> 1 E ... E 10277087 different pixels found (86.00% different). E E Extension HDU 4: E Extension types differ: E a: BINTABLE E b: IMAGE E Extension names differ: E a: HDRTAB E b: WHT E E Headers contain differences: E Headers have different number of cards: E a: 788 E b: 9 E Extra keyword 'TFIELDS' in a: 389 E Extra keyword 'TTYPE1' in a: 'DATE' E Extra keyword 'TTYPE10' in a: 'DATAMODL' E Extra keyword 'TTYPE100' in a: 'EXPEND' E Extra keyword 'TTYPE101' in a: 'MJD-END' E Extra keyword 'TTYPE102' in a: 'TDB-BEG' E Extra keyword 'TTYPE103' in a: 'TDB-MID' E Extra keyword 'TTYPE104' in a: 'TDB-END' E Extra keyword 'TTYPE105' in a: 'READPATT' E Extra keyword 'TTYPE106' in a: 'EXSEGNUM' E Extra keyword 'TTYPE107' in a: 'EXSEGTOT' E Extra keyword 'TTYPE108' in a: 'NOUTPUTS' E Extra keyword 'TTYPE109' in a: 'NINTS' E Extra keyword 'TTYPE11' in a: 'TELESCOP' E Extra keyword 'TTYPE110' in a: 'INTSTART' E Extra keyword 'TTYPE111' in a: 'INTEND' E Extra keyword 'TTYPE112' in a: 'NGROUPS' E Extra keyword 'TTYPE113' in a: 'NFRAMES' E Extra keyword 'TTYPE114' in a: 'MIRNGRPS' E Extra keyword 'TTYPE115' in a: 'MIRNFRMS' E Extra keyword 'TTYPE116' in a: 'FRMDIVSR' E Extra keyword 'TTYPE117' in a: 'GROUPGAP' E Extra keyword 'TTYPE118' in a: 'DRPFRMS1' E Extra keyword 'TTYPE119' in a: 'DRPFRMS3' E Extra keyword 'TTYPE12' in a: 'HGA_MOVE' E Extra keyword 'TTYPE120' in a: 'NSAMPLES' E Extra keyword 'TTYPE121' in a: 'TSAMPLE' E Extra keyword 'TTYPE122' in a: 'TFRAME' E Extra keyword 'TTYPE123' in a: 'TGROUP' E Extra keyword 'TTYPE124' in a: 'EFFINTTM' E Extra keyword 'TTYPE125' in a: 'EFFEXPTM' E Extra keyword 'TTYPE126' in a: 'XPOSURE' E Extra keyword 'TTYPE127' in a: 'DURATION' E Extra keyword 'TTYPE128' in a: 'TELAPSE' E Extra keyword 'TTYPE129' in a: 'NRSTSTRT' E Extra keyword 'TTYPE13' in a: 'HGA_STRT' E Extra keyword 'TTYPE130' in a: 'NRESETS' E Extra keyword 'TTYPE131' in a: 'ZEROFRAM' E Extra keyword 'TTYPE132' in a: 'DATAPROB' E Extra keyword 'TTYPE133' in a: 'SCA_NUM' E Extra keyword 'TTYPE134' in a: 'DATAMODE' E Extra keyword 'TTYPE135' in a: 'NRS_NORM' E Extra keyword 'TTYPE136' in a: 'NRS_REF' E Extra keyword 'TTYPE137' in a: 'SCTARATE' E Extra keyword 'TTYPE138' in a: 'GAINFACT' E Extra keyword 'TTYPE139' in a: 'IS_IMPRT' E Extra keyword 'TTYPE14' in a: 'HGA_STOP' E Extra keyword 'TTYPE140' in a: 'IS_PSF' E Extra keyword 'TTYPE141' in a: 'SELFREF' E Extra keyword 'TTYPE142' in a: 'SUBARRAY' E Extra keyword 'TTYPE143' in a: 'SUBSTRT1' E Extra keyword 'TTYPE144' in a: 'SUBSTRT2' E Extra keyword 'TTYPE145' in a: 'SUBSIZE1' E Extra keyword 'TTYPE146' in a: 'SUBSIZE2' E Extra keyword 'TTYPE147' in a: 'FASTAXIS' E Extra keyword 'TTYPE148' in a: 'SLOWAXIS' E Extra keyword 'TTYPE149' in a: 'DETXCOR' E Extra keyword 'TTYPE15' in a: 'PWFSEET' E Extra keyword 'TTYPE150' in a: 'DETYCOR' E Extra keyword 'TTYPE151' in a: 'DETXSIZ' E Extra keyword 'TTYPE152' in a: 'DETYSIZ' E Extra keyword 'TTYPE153' in a: 'PATTTYPE' E Extra keyword 'TTYPE154' in a: 'PRIDTYPE' E Extra keyword 'TTYPE155' in a: 'PRIDTPTS' E Extra keyword 'TTYPE156' in a: 'PATT_NUM' E Extra keyword 'TTYPE157' in a: 'PATTSTRT' E Extra keyword 'TTYPE158' in a: 'NUMDTHPT' E Extra keyword 'TTYPE159' in a: 'PATTNPTS' E Extra keyword 'TTYPE16' in a: 'NWFSEST' E Extra keyword 'TTYPE160' in a: 'PATTSIZE' E Extra keyword 'TTYPE161' in a: 'SMGRDPAT' E Extra keyword 'TTYPE162' in a: 'SUBPXPTS' E Extra keyword 'TTYPE163' in a: 'SUBPXPAT' E Extra keyword 'TTYPE164' in a: 'SPEC_NUM' E Extra keyword 'TTYPE165' in a: 'SPECNSTP' E Extra keyword 'TTYPE166' in a: 'SPECSTEP' E Extra keyword 'TTYPE167' in a: 'SPCOFFST' E Extra keyword 'TTYPE168' in a: 'SPAT_NUM' E Extra keyword 'TTYPE169' in a: 'SPATNSTP' E Extra keyword 'TTYPE17' in a: 'ASNPOOL' E Extra keyword 'TTYPE170' in a: 'SPATSTEP' E Extra keyword 'TTYPE171' in a: 'SPTOFFST' E Extra keyword 'TTYPE172' in a: 'XOFFSET' E Extra keyword 'TTYPE173' in a: 'YOFFSET' E Extra keyword 'TTYPE174' in a: 'REFFRAME' E Extra keyword 'TTYPE175' in a: 'EPH_TYPE' E Extra keyword 'TTYPE176' in a: 'EPH_TIME' E Extra keyword 'TTYPE177' in a: 'JWST_X' E Extra keyword 'TTYPE178' in a: 'JWST_Y' E Extra keyword 'TTYPE179' in a: 'JWST_Z' E Extra keyword 'TTYPE18' in a: 'ASNTABLE' E Extra keyword 'TTYPE180' in a: 'JWST_DX' E Extra keyword 'TTYPE181' in a: 'JWST_DY' E Extra keyword 'TTYPE182' in a: 'JWST_DZ' E Extra keyword 'TTYPE183' in a: 'APERNAME' E Extra keyword 'TTYPE184' in a: 'PPS_APER' E Extra keyword 'TTYPE185' in a: 'PA_APER' E Extra keyword 'TTYPE186' in a: 'VA_RA' E Extra keyword 'TTYPE187' in a: 'VA_DEC' E Extra keyword 'TTYPE188' in a: 'VA_SCALE' E Extra keyword 'TTYPE189' in a: 'BARTDELT' E Extra keyword 'TTYPE19' in a: 'TITLE' E Extra keyword 'TTYPE190' in a: 'BSTRTIME' E Extra keyword 'TTYPE191' in a: 'BENDTIME' E Extra keyword 'TTYPE192' in a: 'BMIDTIME' E Extra keyword 'TTYPE193' in a: 'HELIDELT' E Extra keyword 'TTYPE194' in a: 'HSTRTIME' E Extra keyword 'TTYPE195' in a: 'HENDTIME' E Extra keyword 'TTYPE196' in a: 'HMIDTIME' E Extra keyword 'TTYPE197' in a: 'FAM_LA1' E Extra keyword 'TTYPE198' in a: 'FASTEP1' E Extra keyword 'TTYPE199' in a: 'FAUNIT1' E Extra keyword 'TTYPE2' in a: 'ORIGIN' E Extra keyword 'TTYPE20' in a: 'PI_NAME' E Extra keyword 'TTYPE200' in a: 'FAPHASE1' E Extra keyword 'TTYPE201' in a: 'FA1VALUE' E Extra keyword 'TTYPE202' in a: 'FAM_LA2' E Extra keyword 'TTYPE203' in a: 'FASTEP2' E Extra keyword 'TTYPE204' in a: 'FAUNIT2' E Extra keyword 'TTYPE205' in a: 'FAPHASE2' E Extra keyword 'TTYPE206' in a: 'FA2VALUE' E Extra keyword 'TTYPE207' in a: 'FAM_LA3' E Extra keyword 'TTYPE208' in a: 'FASTEP3' E Extra keyword 'TTYPE209' in a: 'FAUNIT3' E Extra keyword 'TTYPE21' in a: 'CATEGORY' E Extra keyword 'TTYPE210' in a: 'FAPHASE3' E Extra keyword 'TTYPE211' in a: 'FA3VALUE' E Extra keyword 'TTYPE212' in a: 'RMA_POS' E Extra keyword 'TTYPE213' in a: 'FCSRLPOS' E Extra keyword 'TTYPE214' in a: 'GS_ORDER' E Extra keyword 'TTYPE215' in a: 'GSSTRTTM' E Extra keyword 'TTYPE216' in a: 'GSENDTIM' E Extra keyword 'TTYPE217' in a: 'GDSTARID' E Extra keyword 'TTYPE218' in a: 'GS_RA' E Extra keyword 'TTYPE219' in a: 'GS_DEC' E Extra keyword 'TTYPE22' in a: 'SUBCAT' E Extra keyword 'TTYPE220' in a: 'GS_URA' E Extra keyword 'TTYPE221' in a: 'GS_UDEC' E Extra keyword 'TTYPE222' in a: 'GS_MAG' E Extra keyword 'TTYPE223' in a: 'GS_UMAG' E Extra keyword 'TTYPE224' in a: 'PCS_MODE' E Extra keyword 'TTYPE225' in a: 'VISITEND' E Extra keyword 'TTYPE226' in a: 'GSACSTAT' E Extra keyword 'TTYPE227' in a: 'GSCENTX' E Extra keyword 'TTYPE228' in a: 'GSCENTY' E Extra keyword 'TTYPE229' in a: 'GS_EPOCH' E Extra keyword 'TTYPE23' in a: 'SCICAT' E Extra keyword 'TTYPE230' in a: 'GS_MURA' E Extra keyword 'TTYPE231' in a: 'GS_MUDEC' E Extra keyword 'TTYPE232' in a: 'GS_PARA' E Extra keyword 'TTYPE233' in a: 'CRDS_VER' E Extra keyword 'TTYPE234' in a: 'CRDS_CTX' E Extra keyword 'TTYPE235' in a: 'R_AREA' E Extra keyword 'TTYPE236' in a: 'R_MSAOPE' E Extra keyword 'TTYPE237' in a: 'R_BARSHA' E Extra keyword 'TTYPE238' in a: 'R_CAMERA' E Extra keyword 'TTYPE239' in a: 'R_COLLIM' E Extra keyword 'TTYPE24' in a: 'CONT_ID' E Extra keyword 'TTYPE240' in a: 'R_CUBPAR' E Extra keyword 'TTYPE241' in a: 'R_DARK' E Extra keyword 'TTYPE242' in a: 'R_DISPER' E Extra keyword 'TTYPE243' in a: 'R_DISTOR' E Extra keyword 'TTYPE244' in a: 'R_DRZPAR' E Extra keyword 'TTYPE245' in a: 'R_EXTR1D' E Extra keyword 'TTYPE246' in a: 'R_FILOFF' E Extra keyword 'TTYPE247' in a: 'R_FLAT' E Extra keyword 'TTYPE248' in a: 'R_DFLAT' E Extra keyword 'TTYPE249' in a: 'R_FFLAT' E Extra keyword 'TTYPE25' in a: 'DATE-OBS' E Extra keyword 'TTYPE250' in a: 'R_SFLAT' E Extra keyword 'TTYPE251' in a: 'R_FORE' E Extra keyword 'TTYPE252' in a: 'R_FPA' E Extra keyword 'TTYPE253' in a: 'R_FRINGE' E Extra keyword 'TTYPE254' in a: 'R_GAIN' E Extra keyword 'TTYPE255' in a: 'R_IFUFOR' E Extra keyword 'TTYPE256' in a: 'R_IFUPOS' E Extra keyword 'TTYPE257' in a: 'R_IFUSLI' E Extra keyword 'TTYPE258' in a: 'R_IPC' E Extra keyword 'TTYPE259' in a: 'R_LASTFR' E Extra keyword 'TTYPE26' in a: 'TIME-OBS' E Extra keyword 'TTYPE260' in a: 'R_LINEAR' E Extra keyword 'TTYPE261' in a: 'R_MASK' E Extra keyword 'TTYPE262' in a: 'R_MSA' E Extra keyword 'TTYPE263' in a: 'R_OTE' E Extra keyword 'TTYPE264' in a: 'R_PTHLOS' E Extra keyword 'TTYPE265' in a: 'R_PERSAT' E Extra keyword 'TTYPE266' in a: 'R_PHOTOM' E Extra keyword 'TTYPE267' in a: 'R_PSFMAS' E Extra keyword 'TTYPE268' in a: 'R_READNO' E Extra keyword 'TTYPE269' in a: 'R_REFPIX' E Extra keyword 'TTYPE27' in a: 'DATE-BEG' E Extra keyword 'TTYPE270' in a: 'R_REGION' E Extra keyword 'TTYPE271' in a: 'R_RESAMP' E Extra keyword 'TTYPE272' in a: 'R_RESOL' E Extra keyword 'TTYPE273' in a: 'R_RESET' E Extra keyword 'TTYPE274' in a: 'R_RSCD' E Extra keyword 'TTYPE275' in a: 'R_SATURA' E Extra keyword 'TTYPE276' in a: 'R_SPCWCS' E Extra keyword 'TTYPE277' in a: 'R_STRAY' E Extra keyword 'TTYPE278' in a: 'R_SUPERB' E Extra keyword 'TTYPE279' in a: 'R_THRPUT' E Extra keyword 'TTYPE28' in a: 'DATE-END' E Extra keyword 'TTYPE280' in a: 'R_TRPDEN' E Extra keyword 'TTYPE281' in a: 'R_TRPPAR' E Extra keyword 'TTYPE282' in a: 'R_TSPHOT' E Extra keyword 'TTYPE283' in a: 'R_V2V3' E Extra keyword 'TTYPE284' in a: 'R_WAVCOR' E Extra keyword 'TTYPE285' in a: 'R_WAVRAN' E Extra keyword 'TTYPE286' in a: 'S_PSFALI' E Extra keyword 'TTYPE287' in a: 'S_AMIANA' E Extra keyword 'TTYPE288' in a: 'S_AMIAVG' E Extra keyword 'TTYPE289' in a: 'S_AMINOR' E Extra keyword 'TTYPE29' in a: 'OBS_ID' E Extra keyword 'TTYPE290' in a: 'S_WCS' E Extra keyword 'TTYPE291' in a: 'S_MTWCS' E Extra keyword 'TTYPE292' in a: 'S_BKDSUB' E Extra keyword 'TTYPE293' in a: 'S_BARSHA' E Extra keyword 'TTYPE294' in a: 'S_COMB1D' E Extra keyword 'TTYPE295' in a: 'S_IFUCUB' E Extra keyword 'TTYPE296' in a: 'S_DARK' E Extra keyword 'TTYPE297' in a: 'S_DQINIT' E Extra keyword 'TTYPE298' in a: 'S_TELEMI' E Extra keyword 'TTYPE299' in a: 'S_ERRINI' E Extra keyword 'TTYPE3' in a: 'TIMESYS' E Extra keyword 'TTYPE30' in a: 'VISIT_ID' E Extra keyword 'TTYPE300' in a: 'S_EXTR1D' E Extra keyword 'TTYPE301' in a: 'S_EXTR2D' E Extra keyword 'TTYPE302' in a: 'S_FRSTFR' E Extra keyword 'TTYPE303' in a: 'S_FLAT' E Extra keyword 'TTYPE304' in a: 'S_FRINGE' E Extra keyword 'TTYPE305' in a: 'S_GANSCL' E Extra keyword 'TTYPE306' in a: 'S_GRPSCL' E Extra keyword 'TTYPE307' in a: 'S_GUICDS' E Extra keyword 'TTYPE308' in a: 'S_IMPRNT' E Extra keyword 'TTYPE309' in a: 'S_IPC' E Extra keyword 'TTYPE31' in a: 'PROGRAM' E Extra keyword 'TTYPE310' in a: 'S_JUMP' E Extra keyword 'TTYPE311' in a: 'S_KLIP' E Extra keyword 'TTYPE312' in a: 'S_LASTFR' E Extra keyword 'TTYPE313' in a: 'S_LINEAR' E Extra keyword 'TTYPE314' in a: 'S_MSBSUB' E Extra keyword 'TTYPE315' in a: 'S_MRSMAT' E Extra keyword 'TTYPE316' in a: 'S_MSAFLG' E Extra keyword 'TTYPE317' in a: 'S_OUTLIR' E Extra keyword 'TTYPE318' in a: 'S_PTHLOS' E Extra keyword 'TTYPE319' in a: 'S_PERSIS' E Extra keyword 'TTYPE32' in a: 'OBSERVTN' E Extra keyword 'TTYPE320' in a: 'S_PHOTOM' E Extra keyword 'TTYPE321' in a: 'S_RAMP' E Extra keyword 'TTYPE322' in a: 'S_REFPIX' E Extra keyword 'TTYPE323' in a: 'S_RESAMP' E Extra keyword 'TTYPE324' in a: 'S_RESET' E Extra keyword 'TTYPE325' in a: 'S_RSCD' E Extra keyword 'TTYPE326' in a: 'S_SATURA' E Extra keyword 'TTYPE327' in a: 'S_SKYMAT' E Extra keyword 'TTYPE328' in a: 'S_SRCCAT' E Extra keyword 'TTYPE329' in a: 'S_SRCTYP' E Extra keyword 'TTYPE33' in a: 'VISIT' E Extra keyword 'TTYPE330' in a: 'S_PSFSTK' E Extra keyword 'TTYPE331' in a: 'S_STRAY' E Extra keyword 'TTYPE332' in a: 'S_SUPERB' E Extra keyword 'TTYPE333' in a: 'S_TSPHOT' E Extra keyword 'TTYPE334' in a: 'S_TWKREG' E Extra keyword 'TTYPE335' in a: 'S_WAVCOR' E Extra keyword 'TTYPE336' in a: 'S_WFSCOM' E Extra keyword 'TTYPE337' in a: 'S_WHTLIT' E Extra keyword 'TTYPE338' in a: 'BKGLEVEL' E Extra keyword 'TTYPE339' in a: 'BKGSUB' E Extra keyword 'TTYPE34' in a: 'VISITGRP' E Extra keyword 'TTYPE340' in a: 'BUNIT' E Extra keyword 'TTYPE341' in a: 'PHOTMJSR' E Extra keyword 'TTYPE342' in a: 'PHOTUJA2' E Extra keyword 'TTYPE343' in a: 'PIXAR_SR' E Extra keyword 'TTYPE344' in a: 'PIXAR_A2' E Extra keyword 'TTYPE345' in a: 'RADESYS' E Extra keyword 'TTYPE346' in a: 'RA_V1' E Extra keyword 'TTYPE347' in a: 'DEC_V1' E Extra keyword 'TTYPE348' in a: 'PA_V3' E Extra keyword 'TTYPE349' in a: 'WCSAXES' E Extra keyword 'TTYPE35' in a: 'SEQ_ID' E Extra keyword 'TTYPE350' in a: 'CRPIX1' E Extra keyword 'TTYPE351' in a: 'CRPIX2' E Extra keyword 'TTYPE352' in a: 'CRPIX3' E Extra keyword 'TTYPE353' in a: 'CRVAL1' E Extra keyword 'TTYPE354' in a: 'CRVAL2' E Extra keyword 'TTYPE355' in a: 'CRVAL3' E Extra keyword 'TTYPE356' in a: 'CTYPE1' E Extra keyword 'TTYPE357' in a: 'CTYPE2' E Extra keyword 'TTYPE358' in a: 'CTYPE3' E Extra keyword 'TTYPE359' in a: 'CUNIT1' E Extra keyword 'TTYPE36' in a: 'ACT_ID' E Extra keyword 'TTYPE360' in a: 'CUNIT2' E Extra keyword 'TTYPE361' in a: 'CUNIT3' E Extra keyword 'TTYPE362' in a: 'CDELT1' E Extra keyword 'TTYPE363' in a: 'CDELT2' E Extra keyword 'TTYPE364' in a: 'CDELT3' E Extra keyword 'TTYPE365' in a: 'PC1_1' E Extra keyword 'TTYPE366' in a: 'PC1_2' E Extra keyword 'TTYPE367' in a: 'PC1_3' E Extra keyword 'TTYPE368' in a: 'PC2_1' E Extra keyword 'TTYPE369' in a: 'PC2_2' E Extra keyword 'TTYPE37' in a: 'EXPOSURE' E Extra keyword 'TTYPE370' in a: 'PC2_3' E Extra keyword 'TTYPE371' in a: 'PC3_1' E Extra keyword 'TTYPE372' in a: 'PC3_2' E Extra keyword 'TTYPE373' in a: 'PC3_3' E Extra keyword 'TTYPE374' in a: 'CD1_1' E Extra keyword 'TTYPE375' in a: 'CD1_2' E Extra keyword 'TTYPE376' in a: 'CD2_1' E Extra keyword 'TTYPE377' in a: 'CD2_2' E Extra keyword 'TTYPE378' in a: 'S_REGION' E Extra keyword 'TTYPE379' in a: 'WAVSTART' E Extra keyword 'TTYPE38' in a: 'BKGDTARG' E Extra keyword 'TTYPE380' in a: 'WAVEND' E Extra keyword 'TTYPE381' in a: 'DISPAXIS' E Extra keyword 'TTYPE382' in a: 'SPORDER' E Extra keyword 'TTYPE383' in a: 'V2_REF' E Extra keyword 'TTYPE384' in a: 'V3_REF' E Extra keyword 'TTYPE385' in a: 'VPARITY' E Extra keyword 'TTYPE386' in a: 'V3I_YANG' E Extra keyword 'TTYPE387' in a: 'RA_REF' E Extra keyword 'TTYPE388' in a: 'DEC_REF' E Extra keyword 'TTYPE389' in a: 'ROLL_REF' E Extra keyword 'TTYPE39' in a: 'TEMPLATE' E Extra keyword 'TTYPE4' in a: 'FILENAME' E Extra keyword 'TTYPE40' in a: 'OBSLABEL' E Extra keyword 'TTYPE41' in a: 'ENG_QUAL' E Extra keyword 'TTYPE42' in a: 'ENGQLPTG' E Extra keyword 'TTYPE43' in a: 'VISITYPE' E Extra keyword 'TTYPE44' in a: 'VSTSTART' E Extra keyword 'TTYPE45' in a: 'VISITSTA' E Extra keyword 'TTYPE46' in a: 'NEXPOSUR' E Extra keyword 'TTYPE47' in a: 'INTARGET' E Extra keyword 'TTYPE48' in a: 'TARGOOPP' E Extra keyword 'TTYPE49' in a: 'TSOVISIT' E Extra keyword 'TTYPE5' in a: 'FILETYPE' E Extra keyword 'TTYPE50' in a: 'EXP_ONLY' E Extra keyword 'TTYPE51' in a: 'TARGPROP' E Extra keyword 'TTYPE52' in a: 'TARGNAME' E Extra keyword 'TTYPE53' in a: 'TARGTYPE' E Extra keyword 'TTYPE54' in a: 'TARG_RA' E Extra keyword 'TTYPE55' in a: 'TARG_DEC' E Extra keyword 'TTYPE56' in a: 'TARGURA' E Extra keyword 'TTYPE57' in a: 'TARGUDEC' E Extra keyword 'TTYPE58' in a: 'MU_RA' E Extra keyword 'TTYPE59' in a: 'MU_DEC' E Extra keyword 'TTYPE6' in a: 'SDP_VER' E Extra keyword 'TTYPE60' in a: 'MU_EPOCH' E Extra keyword 'TTYPE61' in a: 'PROP_RA' E Extra keyword 'TTYPE62' in a: 'PROP_DEC' E Extra keyword 'TTYPE63' in a: 'SRCTYAPT' E Extra keyword 'TTYPE64' in a: 'INSTRUME' E Extra keyword 'TTYPE65' in a: 'DETECTOR' E Extra keyword 'TTYPE66' in a: 'MODULE' E Extra keyword 'TTYPE67' in a: 'CHANNEL' E Extra keyword 'TTYPE68' in a: 'FILTER' E Extra keyword 'TTYPE69' in a: 'PUPIL' E Extra keyword 'TTYPE7' in a: 'PRD_VER' E Extra keyword 'TTYPE70' in a: 'PILIN' E Extra keyword 'TTYPE71' in a: 'GRATING' E Extra keyword 'TTYPE72' in a: 'BAND' E Extra keyword 'TTYPE73' in a: 'FXD_SLIT' E Extra keyword 'TTYPE74' in a: 'FOCUSPOS' E Extra keyword 'TTYPE75' in a: 'PREIMAGE' E Extra keyword 'TTYPE76' in a: 'CCCSTATE' E Extra keyword 'TTYPE77' in a: 'CORONMSK' E Extra keyword 'TTYPE78' in a: 'MSASTATE' E Extra keyword 'TTYPE79' in a: 'MSAMETFL' E Extra keyword 'TTYPE8' in a: 'CAL_VER' E Extra keyword 'TTYPE80' in a: 'MSAMETID' E Extra keyword 'TTYPE81' in a: 'MSACONID' E Extra keyword 'TTYPE82' in a: 'LAMP' E Extra keyword 'TTYPE83' in a: 'OPMODE' E Extra keyword 'TTYPE84' in a: 'GWA_XTIL' E Extra keyword 'TTYPE85' in a: 'GWA_YTIL' E Extra keyword 'TTYPE86' in a: 'GWA_XP_V' E Extra keyword 'TTYPE87' in a: 'GWA_YP_V' E Extra keyword 'TTYPE88' in a: 'GWA_PXAV' E Extra keyword 'TTYPE89' in a: 'GWA_PYAV' E Extra keyword 'TTYPE9' in a: 'CAL_VCS' E Extra keyword 'TTYPE90' in a: 'GWA_TILT' E Extra keyword 'TTYPE91' in a: 'FWCPOS' E Extra keyword 'TTYPE92' in a: 'PWCPOS' E Extra keyword 'TTYPE93' in a: 'EXPCOUNT' E Extra keyword 'TTYPE94' in a: 'EXPRIPAR' E Extra keyword 'TTYPE95' in a: 'EXP_TYPE' E Extra keyword 'TTYPE96' in a: 'EXPSTART' E Extra keyword 'TTYPE97' in a: 'MJD-BEG' E Extra keyword 'TTYPE98' in a: 'EXPMID' E Extra keyword 'TTYPE99' in a: 'MJD-AVG' E Keyword BITPIX has different values: E a> 8 E b> -32 E Keyword EXTNAME has different values: E a> HDRTAB E b> WHT E Keyword NAXIS2 has different values: E a> 6 E b> 2340 E Keyword NAXIS2 has different comments: E a> length of dimension 2 E Keyword PCOUNT has different comments: E a> number of group parameters E ? ------ E b> number of parameters E Keyword XTENSION has different values: E a> BINTABLE E b> IMAGE E Keyword XTENSION has different comments: E a> binary table extension E b> Image extension E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff629fd3160>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:132: AssertionError -----------------------------Captured stderr setup------------------------------ 2021-06-04 04:42:46,659 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:42:46,660 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:42:46,661 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:42:46,662 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:42:46,663 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:42:46,664 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:42:46,664 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:42:46,664 - stpipe - INFO - OS: Linux 2021-06-04 04:42:46,987 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). 2021-06-04 04:42:46,992 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:42:47,132 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-06-04 04:42:47,153 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-06-04 04:42:47,155 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:42:47,155 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:42:47,155 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:42:47,155 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:42:47,155 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-06-04 04:42:47,156 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:42:47,156 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-06-04 04:42:47,157 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:42:47,159 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. 2021-06-04 04:42:47,160 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:42:47,160 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:42:47,160 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:42:47,161 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:42:47,161 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-06-04 04:42:47,161 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:42:47,161 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2021-06-04 04:42:47,161 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... 2021-06-04 04:42:47,499 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-06-04 04:42:47,500 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:42:47,760 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2021-06-04 04:42:47,761 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2021-06-04 04:42:47,761 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:42:47,815 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:42:48,013 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-06-04 04:42:48,014 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:42:49,814 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:42:49,996 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-06-04 04:42:49,998 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-06-04 04:42:50,023 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits 2021-06-04 04:42:50,023 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-06-04 04:42:50,110 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:42:50,110 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-06-04 04:42:50,110 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:42:50,110 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-06-04 04:42:50,110 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-06-04 04:42:50,306 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:42:50,308 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.467368 2021-06-04 04:42:50,344 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:42:50,529 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-06-04 04:42:50,531 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:42:50,531 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:42:50,532 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:42:50,532 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2021-06-04 04:42:50,533 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-06-04 04:42:50,704 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrcb5_cal.fits 2021-06-04 04:42:50,704 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-06-04 04:42:51,547 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:42:51,548 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:42:51,549 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:42:51,550 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:42:51,551 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:42:51,552 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:42:51,552 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:42:51,552 - stpipe - INFO - OS: Linux 2021-06-04 04:42:51,702 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). 2021-06-04 04:42:51,706 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:42:51,851 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-06-04 04:42:51,858 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-06-04 04:42:51,860 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:42:51,860 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:42:51,860 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:42:51,860 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:42:51,860 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-06-04 04:42:51,862 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:42:51,862 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-06-04 04:42:51,863 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-06-04 04:42:51,864 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:42:51,864 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:42:51,864 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:42:51,864 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:42:51,865 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:42:51,865 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:42:51,865 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:42:51,865 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:42:51,866 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2021-06-04 04:42:51,867 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... 2021-06-04 04:42:52,114 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-06-04 04:42:52,115 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:42:52,366 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2021-06-04 04:42:52,366 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2021-06-04 04:42:52,367 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:42:52,419 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:42:52,531 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-06-04 04:42:52,532 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:42:52,961 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:42:53,073 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-06-04 04:42:53,074 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-06-04 04:42:53,098 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits 2021-06-04 04:42:53,099 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-06-04 04:42:53,185 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:42:53,185 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-06-04 04:42:53,185 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:42:53,185 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-06-04 04:42:53,185 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-06-04 04:42:53,231 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:42:53,233 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.531918 2021-06-04 04:42:53,267 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:42:53,448 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-06-04 04:42:53,450 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:42:53,450 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:42:53,451 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:42:53,451 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2021-06-04 04:42:53,452 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-06-04 04:42:53,642 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrca5_cal.fits 2021-06-04 04:42:53,642 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-06-04 04:42:54,488 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:42:54,489 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:42:54,490 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:42:54,490 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:42:54,491 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:42:54,492 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:42:54,492 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:42:54,492 - stpipe - INFO - OS: Linux 2021-06-04 04:42:54,639 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). 2021-06-04 04:42:54,642 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:42:54,783 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-06-04 04:42:54,791 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-06-04 04:42:54,792 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:42:54,793 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:42:54,793 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:42:54,793 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:42:54,793 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-06-04 04:42:54,795 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:42:54,795 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-06-04 04:42:54,796 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-06-04 04:42:54,798 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:42:54,799 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2021-06-04 04:42:54,801 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... 2021-06-04 04:42:55,044 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-06-04 04:42:55,045 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:42:55,296 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2021-06-04 04:42:55,296 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2021-06-04 04:42:55,296 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:42:55,348 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:42:55,459 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-06-04 04:42:55,460 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:42:55,889 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:42:55,996 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-06-04 04:42:55,996 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-06-04 04:42:56,021 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits 2021-06-04 04:42:56,021 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-06-04 04:42:56,107 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:42:56,107 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-06-04 04:42:56,108 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:42:56,108 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-06-04 04:42:56,108 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-06-04 04:42:56,156 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:42:56,157 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.467368 2021-06-04 04:42:56,192 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:42:56,312 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-06-04 04:42:56,313 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:42:56,313 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:42:56,314 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:42:56,314 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2021-06-04 04:42:56,315 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-06-04 04:42:56,510 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrcb5_cal.fits 2021-06-04 04:42:56,510 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-06-04 04:42:57,640 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:42:57,641 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:42:57,642 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:42:57,643 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:42:57,643 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:42:57,644 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:42:57,644 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:42:57,644 - stpipe - INFO - OS: Linux 2021-06-04 04:42:57,862 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). 2021-06-04 04:42:57,866 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:42:58,001 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-06-04 04:42:58,005 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-06-04 04:42:58,008 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:42:58,008 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:42:58,008 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:42:58,008 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:42:58,008 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-06-04 04:42:58,009 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:42:58,009 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-06-04 04:42:58,011 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:42:58,012 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. 2021-06-04 04:42:58,013 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:42:58,013 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:42:58,013 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:42:58,013 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:42:58,013 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-06-04 04:42:58,013 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:42:58,014 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2021-06-04 04:42:58,014 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... 2021-06-04 04:42:58,338 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-06-04 04:42:58,339 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:42:58,596 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2021-06-04 04:42:58,596 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2021-06-04 04:42:58,596 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:42:58,650 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:42:58,838 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-06-04 04:42:58,839 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:42:59,296 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:42:59,482 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-06-04 04:42:59,483 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-06-04 04:42:59,508 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits 2021-06-04 04:42:59,508 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-06-04 04:42:59,602 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:42:59,603 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-06-04 04:42:59,603 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:42:59,603 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-06-04 04:42:59,603 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-06-04 04:42:59,649 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:42:59,650 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.531918 2021-06-04 04:42:59,684 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:42:59,873 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-06-04 04:42:59,874 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:42:59,874 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:42:59,875 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:42:59,875 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2021-06-04 04:42:59,876 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-06-04 04:43:00,066 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrca5_cal.fits 2021-06-04 04:43:00,067 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-06-04 04:43:01,061 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:43:01,062 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:43:01,063 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:43:01,063 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:43:01,064 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:43:01,065 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:43:01,065 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:43:01,065 - stpipe - INFO - OS: Linux 2021-06-04 04:43:01,331 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). 2021-06-04 04:43:01,335 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:43:01,473 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-06-04 04:43:01,479 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-06-04 04:43:01,481 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:43:01,481 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:43:01,481 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:43:01,481 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:43:01,481 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-06-04 04:43:01,482 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:43:01,482 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-06-04 04:43:01,482 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:43:01,484 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. 2021-06-04 04:43:01,485 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:43:01,485 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:43:01,485 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:43:01,485 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:43:01,485 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-06-04 04:43:01,486 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:43:01,486 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2021-06-04 04:43:01,486 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... 2021-06-04 04:43:01,772 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-06-04 04:43:01,773 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:43:02,024 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2021-06-04 04:43:02,024 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2021-06-04 04:43:02,024 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:43:02,077 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:43:02,194 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-06-04 04:43:02,195 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:43:02,657 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:43:02,772 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-06-04 04:43:02,773 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-06-04 04:43:02,797 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits 2021-06-04 04:43:02,797 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-06-04 04:43:02,893 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:43:02,893 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-06-04 04:43:02,893 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:43:02,893 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-06-04 04:43:02,893 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-06-04 04:43:02,938 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:43:02,939 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.467368 2021-06-04 04:43:02,974 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:43:03,101 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-06-04 04:43:03,102 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:43:03,102 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:43:03,103 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:43:03,103 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2021-06-04 04:43:03,104 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-06-04 04:43:03,297 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrcb5_cal.fits 2021-06-04 04:43:03,297 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-06-04 04:43:03,645 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf 2021-06-04 04:43:03,655 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-06-04 04:43:03,954 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-06-04 04:43:04,030 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-06-04 04:43:04,031 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-06-04 04:43:04,032 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-06-04 04:43:04,034 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-06-04 04:43:04,035 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-06-04 04:43:04,036 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:43:04,036 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-06-04 04:43:04,037 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:43:04,037 - stpipe - INFO - OS: Linux 2021-06-04 04:43:04,252 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). 2021-06-04 04:43:04,257 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-06-04 04:43:04,342 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-06-04 04:43:04,348 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-06-04 04:43:04,350 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-06-04 04:43:04,351 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:43:04,353 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-06-04 04:43:04,986 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<ModelContainer>,). 2021-06-04 04:43:04,988 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} 2021-06-04 04:43:08,220 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. 2021-06-04 04:43:11,584 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. 2021-06-04 04:43:15,502 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. 2021-06-04 04:43:18,654 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. 2021-06-04 04:43:22,137 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. 2021-06-04 04:43:25,579 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. 2021-06-04 04:43:25,627 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:25,627 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 3. 2021-06-04 04:43:25,627 - stpipe.Image3Pipeline.tweakreg - INFO - Image groups: 2021-06-04 04:43:25,670 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00001_nrc': 2021-06-04 04:43:25,670 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrca5_cal 2021-06-04 04:43:25,670 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrcb5_cal 2021-06-04 04:43:25,713 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00002_nrc': 2021-06-04 04:43:25,713 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrca5_cal 2021-06-04 04:43:25,713 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrcb5_cal 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00003_nrc': 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrca5_cal 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrcb5_cal 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2021-06-04 04:43:25.885708 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.7.2 2021-06-04 04:43:25,885 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:26,045 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image 2021-06-04 04:43:26,049 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. 2021-06-04 04:43:26,221 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2021-06-04 04:43:26,221 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-06-04 04:43:26,223 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. 2021-06-04 04:43:26,223 - stpipe.Image3Pipeline.tweakreg - INFO - Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... 2021-06-04 04:43:26,224 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.027948 YSH: -0.0730398 PROPER ROT: 0.00561762 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00561762 SKEW: -0.0223542 ROT_X: 0.0167947 ROT_Y: -0.0055595 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.175216 FIT MAE: 0.128752 2021-06-04 04:43:26,226 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 95 objects. 2021-06-04 04:43:26,296 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. 2021-06-04 04:43:26,482 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2021-06-04 04:43:26,482 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-06-04 04:43:26,483 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. 2021-06-04 04:43:26,484 - stpipe.Image3Pipeline.tweakreg - INFO - Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... 2021-06-04 04:43:26,484 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0304202 YSH: -0.0565083 PROPER ROT: 0.00576196 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00576196 SKEW: -0.0145191 ROT_X: 0.0130215 ROT_Y: -0.00149761 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.185756 FIT MAE: 0.136124 2021-06-04 04:43:26,486 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 87 objects. 2021-06-04 04:43:26,557 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:26,557 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2021-06-04 04:43:26.557629 2021-06-04 04:43:26,557 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.671921 2021-06-04 04:43:26,557 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-06-04 04:43:26,673 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done 2021-06-04 04:43:26,852 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-06-04 04:43:26,853 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-06-04 04:43:27,028 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:27,028 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:43:27.027994 2021-06-04 04:43:27,028 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:27,028 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-06-04 04:43:27,028 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-06-04 04:43:27,028 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-06-04 04:43:27,029 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:27,029 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-06-04 04:43:30,749 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-06-04 04:43:30,749 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.000498448 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.000498448 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.00110687 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.00110687 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:30,750 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-06-04 04:43:31,443 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: 0.18208548270841154 [not converted] 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:31,444 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:43:31.444907 2021-06-04 04:43:31,445 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.416913 2021-06-04 04:43:31,445 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:43:31,459 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-06-04 04:43:31,575 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-06-04 04:43:31,577 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:43:31,580 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 6 inputs 2021-06-04 04:43:36,528 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:43:44,030 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:43:53,239 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:44:02,345 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:44:10,947 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:44:20,035 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:44:26,660 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 3 images 2021-06-04 04:44:30,767 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-06-04 04:44:35,294 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-06-04 04:44:40,376 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-06-04 04:44:47,662 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-06-04 04:44:55,428 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-06-04 04:45:02,794 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-06-04 04:45:09,619 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-06-04 04:45:15,799 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits 2021-06-04 04:45:16,482 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits 2021-06-04 04:45:17,453 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits 2021-06-04 04:45:18,128 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits 2021-06-04 04:45:19,054 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits 2021-06-04 04:45:19,731 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits 2021-06-04 04:45:19,731 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:45:20,514 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-06-04 04:45:20,516 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:45:20,535 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-06-04 04:45:20,713 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw42424-o002_t001_nircam_clear-f444w 2021-06-04 04:45:24,054 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:45:29,281 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:45:35,189 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:45:41,164 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:45:46,964 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:45:52,889 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-06-04 04:45:55,235 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 2021-06-04 04:45:55,727 - stpipe.Image3Pipeline.resample - INFO - Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits 2021-06-04 04:45:55,727 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-06-04 04:45:55,963 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). 2021-06-04 04:45:55,964 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-06-04 04:45:55,981 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-06-04 04:45:55,990 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-06-04 04:45:55,990 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-06-04 04:45:55,990 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: MULTIPLE 2021-06-04 04:45:55,990 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F444W 2021-06-04 04:45:55,990 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-06-04 04:45:55,990 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-06-04 04:45:56,036 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 3.24181 2021-06-04 04:46:02,027 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 130 sources 2021-06-04 04:46:04,052 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: jw42424-o002_t001_nircam_clear-f444w_cat.ecsv 2021-06-04 04:46:04,160 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in jw42424-o002_t001_nircam_clear-f444w_segm.fits 2021-06-04 04:46:04,161 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw42424-o002_t001_nircam_clear-f444w_segm.fits 2021-06-04 04:46:04,161 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2021-06-04 04:46:04,162 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00001_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00002_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00002_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00003_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00003_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Image3Pipeline.tweakreg:step.py:367 Step tweakreg running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.tweakreg:step.py:371 Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:128 INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:129 Number of image groups to be aligned: 3. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:131 Image groups: INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:156 * Images in GROUP 'jw42424001001_01101_00001_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00001_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00001_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:156 * Images in GROUP 'jw42424001001_01101_00002_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00002_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00002_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:156 * Images in GROUP 'jw42424001001_01101_00003_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00003_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00003_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:162 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-06-04 04:43:25.885708 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-06-04 04:43:25.885708 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.2 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.2 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:612 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:612 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.027948 YSH: -0.0730398 PROPER ROT: 0.00561762 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.027948 YSH: -0.0730398 PROPER ROT: 0.00561762 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00561762 SKEW: -0.0223542 ROT_X: 0.0167947 ROT_Y: -0.0055595 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00561762 SKEW: -0.0223542 ROT_X: 0.0167947 ROT_Y: -0.0055595 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.175216 FIT MAE: 0.128752 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.175216 FIT MAE: 0.128752 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0304202 YSH: -0.0565083 PROPER ROT: 0.00576196 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0304202 YSH: -0.0565083 PROPER ROT: 0.00576196 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00576196 SKEW: -0.0145191 ROT_X: 0.0130215 ROT_Y: -0.00149761 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00576196 SKEW: -0.0145191 ROT_X: 0.0130215 ROT_Y: -0.00149761 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.185756 FIT MAE: 0.136124 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.185756 FIT MAE: 0.136124 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:661 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:661 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:662 ***** tweakwcs.imalign.align_wcs() ended on 2021-06-04 04:43:26.557629 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:662 ***** tweakwcs.imalign.align_wcs() ended on 2021-06-04 04:43:26.557629 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.671921 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.671921 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 INFO stpipe.Image3Pipeline.tweakreg:step.py:470 Step tweakreg done INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:43:27.027994 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:43:27.027994 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: 0.18208548270841154 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: 0.18208548270841154 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:43:31.444907 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:43:31.444907 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.416913 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.416913 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 6 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:406 Model size 45.6M available system memory 119.4G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:406 Model size 45.6M available system memory 119.4G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.35759197615473 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.35759197615473 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.27418877056629 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.27418877056629 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.30084064272433 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.30084064272433 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 95047 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 95047 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4165889 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4165889 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164123 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164123 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4165937 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4165937 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4158111 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4158111 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164538 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164538 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164515 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164515 INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:68 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:406 Model size 45.6M available system memory 117.5G DEBUG stpipe.Image3Pipeline.resample:util.py:406 Model size 45.6M available system memory 117.5G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw42424-o002_t001_nircam_clear-f444w INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw42424-o002_t001_nircam_clear-f444w DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:step.py:928 Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:367 Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:371 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 130 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:120 Wrote source catalog: jw42424-o002_t001_nircam_clear-f444w_cat.ecsv DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:step.py:928 Saved model in jw42424-o002_t001_nircam_clear-f444w_segm.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:126 Wrote segmentation map: jw42424-o002_t001_nircam_clear-f444w_segm.fits INFO stpipe.Image3Pipeline.source_catalog:step.py:470 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:470 Step Image3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334785600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334785600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334785600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334785600 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_catalog | 0.31 | |
|
run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...sv', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv'} diff_astropy_tables = <function diff_astropy_tables.<locals>._diff_astropy_tables at 0x7ff629863790> @pytest.mark.bigdata def test_nircam_image_stage3_catalog(run_image3pipeline, rtdata_module, diff_astropy_tables): rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" rtdata.output = "jw42424-o002_t001_nircam_clear-f444w_cat.ecsv" rtdata.get_truth("truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv") > assert diff_astropy_tables(rtdata.output, rtdata.truth, rtol=1e-4, atol=1e-5) E AssertionError: Column names (or order) do not match E assert ['id', 'xcent...lux_err', ...] == ['label', 'xc...lux_err', ...] E At index 0 diff: 'id' != 'label' E Full diff: E [ E - 'label', E + 'id', E 'xcentroid', E 'ycentroid', E 'sky_centroid', E 'aper_bkg_flux', E 'aper_bkg_flux_err', E 'aper30_flux', E 'aper30_flux_err', E 'aper50_flux', E 'aper50_flux_err', E 'aper70_flux', E 'aper70_flux_err', E 'aper_total_flux', E 'aper_total_flux_err', E 'aper30_abmag', E 'aper30_abmag_err', E 'aper50_abmag', E 'aper50_abmag_err', E 'aper70_abmag', E 'aper70_abmag_err', E 'aper_total_abmag', E 'aper_total_abmag_err', E 'aper30_vegamag', E 'aper30_vegamag_err', E 'aper50_vegamag', E 'aper50_vegamag_err', E 'aper70_vegamag', E 'aper70_vegamag_err', E 'aper_total_vegamag', E 'aper_total_vegamag_err', E - 'CI_50_30', E - 'CI_70_50', E ? ^ E + 'CI_30_50', E ? ^ E - 'CI_70_30', E ? ^ ^ E + 'CI_50_70', E ? ^ ^ E - 'is_extended', E + 'CI_30_70', E + 'is_star', E 'sharpness', E 'roundness', E - 'nn_label', E 'nn_dist', E + 'nn_abmag', E 'isophotal_flux', E 'isophotal_flux_err', E 'isophotal_abmag', E 'isophotal_abmag_err', E 'isophotal_vegamag', E 'isophotal_vegamag_err', E 'isophotal_area', E 'semimajor_sigma', E 'semiminor_sigma', E 'ellipticity', E 'orientation', E 'sky_orientation', E 'sky_bbox_ll', E 'sky_bbox_ul', E 'sky_bbox_lr', E 'sky_bbox_ur', E ] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:142: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 106604 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 106604 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 106604 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 106604 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_segmap | 0.95 | |
|
run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...s', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_stage3_segmap(run_image3pipeline, rtdata_module, fitsdiff_default_kwargs): rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" rtdata.output = "jw42424-o002_t001_nircam_clear-f444w_segm.fits" rtdata.get_truth("truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_t001_nircam_clear-f444w_segm.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424-o002_t001_nircam_clear-f444w_segm.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 176 E b: 178 E Extra keyword 'PIXFRAC' in b: 1.0 E Extra keyword 'PXSCLRT' in b: 1.0 E Keyword BKGLEVEL has different values: E a> 0.1820854827084115 E b> 0.1817218501964128 E Keyword DATAMODL has different values: E a> ImageModel E b> SegmentationMapModel E Keyword EFFEXPTM has different values: E a> 150.31478 E b> 450.94434 E Keyword TEXPTIME has different values: E a> 150.31478 E b> 450.94434 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 9 E b: 28 E Extra keyword '' in b: '' E Extra keyword 'BSCALE' in b: 1 E Extra keyword 'BZERO' in b: 2147483648 E Extra keyword 'CDELT1' in b: 1.74799277717236e-05 E Extra keyword 'CDELT2' in b: 1.74799277717236e-05 E Extra keyword 'CRPIX1' in b: 2554.339572995955 E Extra keyword 'CRPIX2' in b: 1170.77646643729 E Extra keyword 'CRVAL1' in b: 22.00070633024032 E Extra keyword 'CRVAL2' in b: 12.00106915025607 E Extra keyword 'CTYPE1' in b: 'RA---TAN' E Extra keyword 'CTYPE2' in b: 'DEC--TAN' E Extra keyword 'CUNIT1' in b: 'deg' E Extra keyword 'CUNIT2' in b: 'deg' E Extra keyword 'PC1_1' in b: -0.9999992795937078 E Extra keyword 'PC1_2' in b: -0.00120033831291363 E Extra keyword 'PC2_1' in b: -0.00120033831291363 E Extra keyword 'PC2_2' in b: 0.9999992795937078 E Extra keyword 'S_REGION' in b: 'POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315' E Extra keyword 'WCSAXES' in b: 2 E Keyword BITPIX has different values: E a> -32 E ? - E b> 32 E E Data contains differences: E Data differs at [1354, 85]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [1355, 85]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [1354, 86]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [1355, 86]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [1356, 86]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [1354, 87]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [1355, 87]: E (float32) a> 2.0 E (uint32) b> 0 E Data differs at [3410, 129]: E (float32) a> 3.0 E (uint32) b> 2 E Data differs at [3411, 129]: E (float32) a> 3.0 E (uint32) b> 2 E Data differs at [3412, 129]: E (float32) a> 3.0 E (uint32) b> 2 E ... E 21305 different pixels found (0.18% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6278fdfd0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:152: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47839680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47839680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47839680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47839680 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target | 102.19 | |
|
rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ving_targe0/truth/mt_assoc_i2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_moving_target(rtdata, fitsdiff_default_kwargs): """Test resampled i2d of moving target exposures for NIRCam imaging""" collect_pipeline_cfgs("config") rtdata.get_asn("nircam/image/mt_asn.json") rtdata.output = "mt_assoc_i2d.fits" args = ["config/calwebb_image3.cfg", rtdata.input] Step.from_cmdline(args) rtdata.get_truth("truth/test_nircam_mtimage/mt_assoc_i2d.fits") fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_assoc_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/truth/mt_assoc_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Files contain different numbers of HDUs: E a: 6 E b: 10 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 173 E b: 175 E Extra keyword 'PIXFRAC' in b: 1.0 E Extra keyword 'PXSCLRT' in b: 1.0 E Keyword EFFEXPTM has different values: E a> 75.15739 E b> 300.62956 E Keyword TEXPTIME has different values: E a> 75.15739 E b> 300.62956 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 51 E b: 44 E Extra keyword 'DEC_REF' in a: -27.79878080395927 E Extra keyword 'RA_REF' in a: 53.10000511435869 E Extra keyword 'ROLL_REF' in a: 0.01313845405406973 E Extra keyword 'V2_REF' in a: -89.596514 E Extra keyword 'V3I_YANG' in a: 0.008058 E Extra keyword 'V3_REF' in a: -491.474153 E Extra keyword 'VPARITY' in a: -1 E E Data contains differences: E Data differs at [9, 1]: E a> -0.35311046 E b> -0.34557453 E Data differs at [10, 1]: E a> -0.10952326 E b> -0.26017228 E Data differs at [11, 1]: E a> -0.03382148 E b> -0.17641784 E Data differs at [12, 1]: E a> 0.030479705 E b> -0.027480701 E Data differs at [13, 1]: E a> -0.0028103488 E b> -0.22043116 E Data differs at [14, 1]: E a> -0.15586881 E b> -0.22509731 E Data differs at [15, 1]: E a> -0.15411167 E b> -0.317307 E Data differs at [21, 1]: E a> 0.032743827 E b> 0.025927342 E Data differs at [22, 1]: E a> -0.17056331 E b> -0.16844717 E Data differs at [32, 1]: E a> -0.18574281 E b> -0.18570586 E ... E 4744731 different pixels found (70.76% different). E E Extension HDU 2: E Extension names differ: E a: CON E b: ERR E E Headers contain differences: E Headers have different number of cards: E a: 9 E b: 10 E Extra keyword 'BUNIT' in b: 'MJy/sr' E Keyword BITPIX has different values: E a> 32 E b> -32 E ? + E Keyword EXTNAME has different values: E a> CON E b> ERR E E Data contains differences: E Data differs at [1, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [2, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [3, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [4, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [5, 1]: E (int32) a> 0 E (float32) b> nan E Data differs at [6, 1]: E (int32) a> 4 E (float32) b> nan E Data differs at [7, 1]: E (int32) a> 4 E (float32) b> nan E Data differs at [8, 1]: E (int32) a> 4 E (float32) b> nan E Data differs at [9, 1]: E (int32) a> 4 E (float32) b> nan E Data differs at [10, 1]: E (int32) a> 4 E (float32) b> nan E ... E 6705600 different pixels found (100.00% different). E E Extension HDU 3: E Extension names differ: E a: WHT E b: CON E E Headers contain differences: E Keyword BITPIX has different values: E a> -32 E ? - E b> 32 E Keyword EXTNAME has different values: E a> WHT E b> CON E E Data contains differences: E Data differs at [6, 1]: E (float32) a> 13.260393 E (int32) b> 4 E Data differs at [7, 1]: E (float32) a> 35.65477 E (int32) b> 4 E Data differs at [8, 1]: E (float32) a> 28.937618 E (int32) b> 4 E Data differs at [9, 1]: E (float32) a> 23.41686 E (int32) b> 4 E Data differs at [10, 1]: E (float32) a> 6.703286 E (int32) b> 4 E Data differs at [11, 1]: E (float32) a> 13.961745 E (int32) b> 4 E Data differs at [12, 1]: E (float32) a> 26.77895 E (int32) b> 4 E Data differs at [13, 1]: E (float32) a> 10.090864 E (int32) b> 4 E Data differs at [14, 1]: E (float32) a> 9.984749 E (int32) b> 4 E Data differs at [15, 1]: E (float32) a> 12.84628 E (int32) b> 4 E ... E 6086891 different pixels found (90.77% different). E E Extension HDU 4: E Extension types differ: E a: BINTABLE E b: IMAGE E Extension names differ: E a: HDRTAB E b: WHT E E Headers contain differences: E Headers have different number of cards: E a: 788 E b: 9 E Extra keyword 'TFIELDS' in a: 389 E Extra keyword 'TTYPE1' in a: 'DATE' E Extra keyword 'TTYPE10' in a: 'DATAMODL' E Extra keyword 'TTYPE100' in a: 'EXPEND' E Extra keyword 'TTYPE101' in a: 'MJD-END' E Extra keyword 'TTYPE102' in a: 'TDB-BEG' E Extra keyword 'TTYPE103' in a: 'TDB-MID' E Extra keyword 'TTYPE104' in a: 'TDB-END' E Extra keyword 'TTYPE105' in a: 'READPATT' E Extra keyword 'TTYPE106' in a: 'EXSEGNUM' E Extra keyword 'TTYPE107' in a: 'EXSEGTOT' E Extra keyword 'TTYPE108' in a: 'NOUTPUTS' E Extra keyword 'TTYPE109' in a: 'NINTS' E Extra keyword 'TTYPE11' in a: 'TELESCOP' E Extra keyword 'TTYPE110' in a: 'INTSTART' E Extra keyword 'TTYPE111' in a: 'INTEND' E Extra keyword 'TTYPE112' in a: 'NGROUPS' E Extra keyword 'TTYPE113' in a: 'NFRAMES' E Extra keyword 'TTYPE114' in a: 'MIRNGRPS' E Extra keyword 'TTYPE115' in a: 'MIRNFRMS' E Extra keyword 'TTYPE116' in a: 'FRMDIVSR' E Extra keyword 'TTYPE117' in a: 'GROUPGAP' E Extra keyword 'TTYPE118' in a: 'DRPFRMS1' E Extra keyword 'TTYPE119' in a: 'DRPFRMS3' E Extra keyword 'TTYPE12' in a: 'HGA_MOVE' E Extra keyword 'TTYPE120' in a: 'NSAMPLES' E Extra keyword 'TTYPE121' in a: 'TSAMPLE' E Extra keyword 'TTYPE122' in a: 'TFRAME' E Extra keyword 'TTYPE123' in a: 'TGROUP' E Extra keyword 'TTYPE124' in a: 'EFFINTTM' E Extra keyword 'TTYPE125' in a: 'EFFEXPTM' E Extra keyword 'TTYPE126' in a: 'XPOSURE' E Extra keyword 'TTYPE127' in a: 'DURATION' E Extra keyword 'TTYPE128' in a: 'TELAPSE' E Extra keyword 'TTYPE129' in a: 'NRSTSTRT' E Extra keyword 'TTYPE13' in a: 'HGA_STRT' E Extra keyword 'TTYPE130' in a: 'NRESETS' E Extra keyword 'TTYPE131' in a: 'ZEROFRAM' E Extra keyword 'TTYPE132' in a: 'DATAPROB' E Extra keyword 'TTYPE133' in a: 'SCA_NUM' E Extra keyword 'TTYPE134' in a: 'DATAMODE' E Extra keyword 'TTYPE135' in a: 'NRS_NORM' E Extra keyword 'TTYPE136' in a: 'NRS_REF' E Extra keyword 'TTYPE137' in a: 'SCTARATE' E Extra keyword 'TTYPE138' in a: 'GAINFACT' E Extra keyword 'TTYPE139' in a: 'IS_IMPRT' E Extra keyword 'TTYPE14' in a: 'HGA_STOP' E Extra keyword 'TTYPE140' in a: 'IS_PSF' E Extra keyword 'TTYPE141' in a: 'SELFREF' E Extra keyword 'TTYPE142' in a: 'SUBARRAY' E Extra keyword 'TTYPE143' in a: 'SUBSTRT1' E Extra keyword 'TTYPE144' in a: 'SUBSTRT2' E Extra keyword 'TTYPE145' in a: 'SUBSIZE1' E Extra keyword 'TTYPE146' in a: 'SUBSIZE2' E Extra keyword 'TTYPE147' in a: 'FASTAXIS' E Extra keyword 'TTYPE148' in a: 'SLOWAXIS' E Extra keyword 'TTYPE149' in a: 'DETXCOR' E Extra keyword 'TTYPE15' in a: 'PWFSEET' E Extra keyword 'TTYPE150' in a: 'DETYCOR' E Extra keyword 'TTYPE151' in a: 'DETXSIZ' E Extra keyword 'TTYPE152' in a: 'DETYSIZ' E Extra keyword 'TTYPE153' in a: 'PATTTYPE' E Extra keyword 'TTYPE154' in a: 'PRIDTYPE' E Extra keyword 'TTYPE155' in a: 'PRIDTPTS' E Extra keyword 'TTYPE156' in a: 'PATT_NUM' E Extra keyword 'TTYPE157' in a: 'PATTSTRT' E Extra keyword 'TTYPE158' in a: 'NUMDTHPT' E Extra keyword 'TTYPE159' in a: 'PATTNPTS' E Extra keyword 'TTYPE16' in a: 'NWFSEST' E Extra keyword 'TTYPE160' in a: 'PATTSIZE' E Extra keyword 'TTYPE161' in a: 'SMGRDPAT' E Extra keyword 'TTYPE162' in a: 'SUBPXPTS' E Extra keyword 'TTYPE163' in a: 'SUBPXPAT' E Extra keyword 'TTYPE164' in a: 'SPEC_NUM' E Extra keyword 'TTYPE165' in a: 'SPECNSTP' E Extra keyword 'TTYPE166' in a: 'SPECSTEP' E Extra keyword 'TTYPE167' in a: 'SPCOFFST' E Extra keyword 'TTYPE168' in a: 'SPAT_NUM' E Extra keyword 'TTYPE169' in a: 'SPATNSTP' E Extra keyword 'TTYPE17' in a: 'ASNPOOL' E Extra keyword 'TTYPE170' in a: 'SPATSTEP' E Extra keyword 'TTYPE171' in a: 'SPTOFFST' E Extra keyword 'TTYPE172' in a: 'XOFFSET' E Extra keyword 'TTYPE173' in a: 'YOFFSET' E Extra keyword 'TTYPE174' in a: 'REFFRAME' E Extra keyword 'TTYPE175' in a: 'EPH_TYPE' E Extra keyword 'TTYPE176' in a: 'EPH_TIME' E Extra keyword 'TTYPE177' in a: 'JWST_X' E Extra keyword 'TTYPE178' in a: 'JWST_Y' E Extra keyword 'TTYPE179' in a: 'JWST_Z' E Extra keyword 'TTYPE18' in a: 'ASNTABLE' E Extra keyword 'TTYPE180' in a: 'JWST_DX' E Extra keyword 'TTYPE181' in a: 'JWST_DY' E Extra keyword 'TTYPE182' in a: 'JWST_DZ' E Extra keyword 'TTYPE183' in a: 'APERNAME' E Extra keyword 'TTYPE184' in a: 'PPS_APER' E Extra keyword 'TTYPE185' in a: 'PA_APER' E Extra keyword 'TTYPE186' in a: 'VA_RA' E Extra keyword 'TTYPE187' in a: 'VA_DEC' E Extra keyword 'TTYPE188' in a: 'VA_SCALE' E Extra keyword 'TTYPE189' in a: 'BARTDELT' E Extra keyword 'TTYPE19' in a: 'TITLE' E Extra keyword 'TTYPE190' in a: 'BSTRTIME' E Extra keyword 'TTYPE191' in a: 'BENDTIME' E Extra keyword 'TTYPE192' in a: 'BMIDTIME' E Extra keyword 'TTYPE193' in a: 'HELIDELT' E Extra keyword 'TTYPE194' in a: 'HSTRTIME' E Extra keyword 'TTYPE195' in a: 'HENDTIME' E Extra keyword 'TTYPE196' in a: 'HMIDTIME' E Extra keyword 'TTYPE197' in a: 'FAM_LA1' E Extra keyword 'TTYPE198' in a: 'FASTEP1' E Extra keyword 'TTYPE199' in a: 'FAUNIT1' E Extra keyword 'TTYPE2' in a: 'ORIGIN' E Extra keyword 'TTYPE20' in a: 'PI_NAME' E Extra keyword 'TTYPE200' in a: 'FAPHASE1' E Extra keyword 'TTYPE201' in a: 'FA1VALUE' E Extra keyword 'TTYPE202' in a: 'FAM_LA2' E Extra keyword 'TTYPE203' in a: 'FASTEP2' E Extra keyword 'TTYPE204' in a: 'FAUNIT2' E Extra keyword 'TTYPE205' in a: 'FAPHASE2' E Extra keyword 'TTYPE206' in a: 'FA2VALUE' E Extra keyword 'TTYPE207' in a: 'FAM_LA3' E Extra keyword 'TTYPE208' in a: 'FASTEP3' E Extra keyword 'TTYPE209' in a: 'FAUNIT3' E Extra keyword 'TTYPE21' in a: 'CATEGORY' E Extra keyword 'TTYPE210' in a: 'FAPHASE3' E Extra keyword 'TTYPE211' in a: 'FA3VALUE' E Extra keyword 'TTYPE212' in a: 'RMA_POS' E Extra keyword 'TTYPE213' in a: 'FCSRLPOS' E Extra keyword 'TTYPE214' in a: 'GS_ORDER' E Extra keyword 'TTYPE215' in a: 'GSSTRTTM' E Extra keyword 'TTYPE216' in a: 'GSENDTIM' E Extra keyword 'TTYPE217' in a: 'GDSTARID' E Extra keyword 'TTYPE218' in a: 'GS_RA' E Extra keyword 'TTYPE219' in a: 'GS_DEC' E Extra keyword 'TTYPE22' in a: 'SUBCAT' E Extra keyword 'TTYPE220' in a: 'GS_URA' E Extra keyword 'TTYPE221' in a: 'GS_UDEC' E Extra keyword 'TTYPE222' in a: 'GS_MAG' E Extra keyword 'TTYPE223' in a: 'GS_UMAG' E Extra keyword 'TTYPE224' in a: 'PCS_MODE' E Extra keyword 'TTYPE225' in a: 'VISITEND' E Extra keyword 'TTYPE226' in a: 'GSACSTAT' E Extra keyword 'TTYPE227' in a: 'GSCENTX' E Extra keyword 'TTYPE228' in a: 'GSCENTY' E Extra keyword 'TTYPE229' in a: 'GS_EPOCH' E Extra keyword 'TTYPE23' in a: 'SCICAT' E Extra keyword 'TTYPE230' in a: 'GS_MURA' E Extra keyword 'TTYPE231' in a: 'GS_MUDEC' E Extra keyword 'TTYPE232' in a: 'GS_PARA' E Extra keyword 'TTYPE233' in a: 'CRDS_VER' E Extra keyword 'TTYPE234' in a: 'CRDS_CTX' E Extra keyword 'TTYPE235' in a: 'R_AREA' E Extra keyword 'TTYPE236' in a: 'R_MSAOPE' E Extra keyword 'TTYPE237' in a: 'R_BARSHA' E Extra keyword 'TTYPE238' in a: 'R_CAMERA' E Extra keyword 'TTYPE239' in a: 'R_COLLIM' E Extra keyword 'TTYPE24' in a: 'CONT_ID' E Extra keyword 'TTYPE240' in a: 'R_CUBPAR' E Extra keyword 'TTYPE241' in a: 'R_DARK' E Extra keyword 'TTYPE242' in a: 'R_DISPER' E Extra keyword 'TTYPE243' in a: 'R_DISTOR' E Extra keyword 'TTYPE244' in a: 'R_DRZPAR' E Extra keyword 'TTYPE245' in a: 'R_EXTR1D' E Extra keyword 'TTYPE246' in a: 'R_FILOFF' E Extra keyword 'TTYPE247' in a: 'R_FLAT' E Extra keyword 'TTYPE248' in a: 'R_DFLAT' E Extra keyword 'TTYPE249' in a: 'R_FFLAT' E Extra keyword 'TTYPE25' in a: 'DATE-OBS' E Extra keyword 'TTYPE250' in a: 'R_SFLAT' E Extra keyword 'TTYPE251' in a: 'R_FORE' E Extra keyword 'TTYPE252' in a: 'R_FPA' E Extra keyword 'TTYPE253' in a: 'R_FRINGE' E Extra keyword 'TTYPE254' in a: 'R_GAIN' E Extra keyword 'TTYPE255' in a: 'R_IFUFOR' E Extra keyword 'TTYPE256' in a: 'R_IFUPOS' E Extra keyword 'TTYPE257' in a: 'R_IFUSLI' E Extra keyword 'TTYPE258' in a: 'R_IPC' E Extra keyword 'TTYPE259' in a: 'R_LASTFR' E Extra keyword 'TTYPE26' in a: 'TIME-OBS' E Extra keyword 'TTYPE260' in a: 'R_LINEAR' E Extra keyword 'TTYPE261' in a: 'R_MASK' E Extra keyword 'TTYPE262' in a: 'R_MSA' E Extra keyword 'TTYPE263' in a: 'R_OTE' E Extra keyword 'TTYPE264' in a: 'R_PTHLOS' E Extra keyword 'TTYPE265' in a: 'R_PERSAT' E Extra keyword 'TTYPE266' in a: 'R_PHOTOM' E Extra keyword 'TTYPE267' in a: 'R_PSFMAS' E Extra keyword 'TTYPE268' in a: 'R_READNO' E Extra keyword 'TTYPE269' in a: 'R_REFPIX' E Extra keyword 'TTYPE27' in a: 'DATE-BEG' E Extra keyword 'TTYPE270' in a: 'R_REGION' E Extra keyword 'TTYPE271' in a: 'R_RESAMP' E Extra keyword 'TTYPE272' in a: 'R_RESOL' E Extra keyword 'TTYPE273' in a: 'R_RESET' E Extra keyword 'TTYPE274' in a: 'R_RSCD' E Extra keyword 'TTYPE275' in a: 'R_SATURA' E Extra keyword 'TTYPE276' in a: 'R_SPCWCS' E Extra keyword 'TTYPE277' in a: 'R_STRAY' E Extra keyword 'TTYPE278' in a: 'R_SUPERB' E Extra keyword 'TTYPE279' in a: 'R_THRPUT' E Extra keyword 'TTYPE28' in a: 'DATE-END' E Extra keyword 'TTYPE280' in a: 'R_TRPDEN' E Extra keyword 'TTYPE281' in a: 'R_TRPPAR' E Extra keyword 'TTYPE282' in a: 'R_TSPHOT' E Extra keyword 'TTYPE283' in a: 'R_V2V3' E Extra keyword 'TTYPE284' in a: 'R_WAVCOR' E Extra keyword 'TTYPE285' in a: 'R_WAVRAN' E Extra keyword 'TTYPE286' in a: 'S_PSFALI' E Extra keyword 'TTYPE287' in a: 'S_AMIANA' E Extra keyword 'TTYPE288' in a: 'S_AMIAVG' E Extra keyword 'TTYPE289' in a: 'S_AMINOR' E Extra keyword 'TTYPE29' in a: 'OBS_ID' E Extra keyword 'TTYPE290' in a: 'S_WCS' E Extra keyword 'TTYPE291' in a: 'S_MTWCS' E Extra keyword 'TTYPE292' in a: 'S_BKDSUB' E Extra keyword 'TTYPE293' in a: 'S_BARSHA' E Extra keyword 'TTYPE294' in a: 'S_COMB1D' E Extra keyword 'TTYPE295' in a: 'S_IFUCUB' E Extra keyword 'TTYPE296' in a: 'S_DARK' E Extra keyword 'TTYPE297' in a: 'S_DQINIT' E Extra keyword 'TTYPE298' in a: 'S_TELEMI' E Extra keyword 'TTYPE299' in a: 'S_ERRINI' E Extra keyword 'TTYPE3' in a: 'TIMESYS' E Extra keyword 'TTYPE30' in a: 'VISIT_ID' E Extra keyword 'TTYPE300' in a: 'S_EXTR1D' E Extra keyword 'TTYPE301' in a: 'S_EXTR2D' E Extra keyword 'TTYPE302' in a: 'S_FRSTFR' E Extra keyword 'TTYPE303' in a: 'S_FLAT' E Extra keyword 'TTYPE304' in a: 'S_FRINGE' E Extra keyword 'TTYPE305' in a: 'S_GANSCL' E Extra keyword 'TTYPE306' in a: 'S_GRPSCL' E Extra keyword 'TTYPE307' in a: 'S_GUICDS' E Extra keyword 'TTYPE308' in a: 'S_IMPRNT' E Extra keyword 'TTYPE309' in a: 'S_IPC' E Extra keyword 'TTYPE31' in a: 'PROGRAM' E Extra keyword 'TTYPE310' in a: 'S_JUMP' E Extra keyword 'TTYPE311' in a: 'S_KLIP' E Extra keyword 'TTYPE312' in a: 'S_LASTFR' E Extra keyword 'TTYPE313' in a: 'S_LINEAR' E Extra keyword 'TTYPE314' in a: 'S_MSBSUB' E Extra keyword 'TTYPE315' in a: 'S_MRSMAT' E Extra keyword 'TTYPE316' in a: 'S_MSAFLG' E Extra keyword 'TTYPE317' in a: 'S_OUTLIR' E Extra keyword 'TTYPE318' in a: 'S_PTHLOS' E Extra keyword 'TTYPE319' in a: 'S_PERSIS' E Extra keyword 'TTYPE32' in a: 'OBSERVTN' E Extra keyword 'TTYPE320' in a: 'S_PHOTOM' E Extra keyword 'TTYPE321' in a: 'S_RAMP' E Extra keyword 'TTYPE322' in a: 'S_REFPIX' E Extra keyword 'TTYPE323' in a: 'S_RESAMP' E Extra keyword 'TTYPE324' in a: 'S_RESET' E Extra keyword 'TTYPE325' in a: 'S_RSCD' E Extra keyword 'TTYPE326' in a: 'S_SATURA' E Extra keyword 'TTYPE327' in a: 'S_SKYMAT' E Extra keyword 'TTYPE328' in a: 'S_SRCCAT' E Extra keyword 'TTYPE329' in a: 'S_SRCTYP' E Extra keyword 'TTYPE33' in a: 'VISIT' E Extra keyword 'TTYPE330' in a: 'S_PSFSTK' E Extra keyword 'TTYPE331' in a: 'S_STRAY' E Extra keyword 'TTYPE332' in a: 'S_SUPERB' E Extra keyword 'TTYPE333' in a: 'S_TSPHOT' E Extra keyword 'TTYPE334' in a: 'S_TWKREG' E Extra keyword 'TTYPE335' in a: 'S_WAVCOR' E Extra keyword 'TTYPE336' in a: 'S_WFSCOM' E Extra keyword 'TTYPE337' in a: 'S_WHTLIT' E Extra keyword 'TTYPE338' in a: 'BKGLEVEL' E Extra keyword 'TTYPE339' in a: 'BKGSUB' E Extra keyword 'TTYPE34' in a: 'VISITGRP' E Extra keyword 'TTYPE340' in a: 'BUNIT' E Extra keyword 'TTYPE341' in a: 'PHOTMJSR' E Extra keyword 'TTYPE342' in a: 'PHOTUJA2' E Extra keyword 'TTYPE343' in a: 'PIXAR_SR' E Extra keyword 'TTYPE344' in a: 'PIXAR_A2' E Extra keyword 'TTYPE345' in a: 'RADESYS' E Extra keyword 'TTYPE346' in a: 'RA_V1' E Extra keyword 'TTYPE347' in a: 'DEC_V1' E Extra keyword 'TTYPE348' in a: 'PA_V3' E Extra keyword 'TTYPE349' in a: 'WCSAXES' E Extra keyword 'TTYPE35' in a: 'SEQ_ID' E Extra keyword 'TTYPE350' in a: 'CRPIX1' E Extra keyword 'TTYPE351' in a: 'CRPIX2' E Extra keyword 'TTYPE352' in a: 'CRPIX3' E Extra keyword 'TTYPE353' in a: 'CRVAL1' E Extra keyword 'TTYPE354' in a: 'CRVAL2' E Extra keyword 'TTYPE355' in a: 'CRVAL3' E Extra keyword 'TTYPE356' in a: 'CTYPE1' E Extra keyword 'TTYPE357' in a: 'CTYPE2' E Extra keyword 'TTYPE358' in a: 'CTYPE3' E Extra keyword 'TTYPE359' in a: 'CUNIT1' E Extra keyword 'TTYPE36' in a: 'ACT_ID' E Extra keyword 'TTYPE360' in a: 'CUNIT2' E Extra keyword 'TTYPE361' in a: 'CUNIT3' E Extra keyword 'TTYPE362' in a: 'CDELT1' E Extra keyword 'TTYPE363' in a: 'CDELT2' E Extra keyword 'TTYPE364' in a: 'CDELT3' E Extra keyword 'TTYPE365' in a: 'PC1_1' E Extra keyword 'TTYPE366' in a: 'PC1_2' E Extra keyword 'TTYPE367' in a: 'PC1_3' E Extra keyword 'TTYPE368' in a: 'PC2_1' E Extra keyword 'TTYPE369' in a: 'PC2_2' E Extra keyword 'TTYPE37' in a: 'EXPOSURE' E Extra keyword 'TTYPE370' in a: 'PC2_3' E Extra keyword 'TTYPE371' in a: 'PC3_1' E Extra keyword 'TTYPE372' in a: 'PC3_2' E Extra keyword 'TTYPE373' in a: 'PC3_3' E Extra keyword 'TTYPE374' in a: 'CD1_1' E Extra keyword 'TTYPE375' in a: 'CD1_2' E Extra keyword 'TTYPE376' in a: 'CD2_1' E Extra keyword 'TTYPE377' in a: 'CD2_2' E Extra keyword 'TTYPE378' in a: 'S_REGION' E Extra keyword 'TTYPE379' in a: 'WAVSTART' E Extra keyword 'TTYPE38' in a: 'BKGDTARG' E Extra keyword 'TTYPE380' in a: 'WAVEND' E Extra keyword 'TTYPE381' in a: 'DISPAXIS' E Extra keyword 'TTYPE382' in a: 'SPORDER' E Extra keyword 'TTYPE383' in a: 'V2_REF' E Extra keyword 'TTYPE384' in a: 'V3_REF' E Extra keyword 'TTYPE385' in a: 'VPARITY' E Extra keyword 'TTYPE386' in a: 'V3I_YANG' E Extra keyword 'TTYPE387' in a: 'RA_REF' E Extra keyword 'TTYPE388' in a: 'DEC_REF' E Extra keyword 'TTYPE389' in a: 'ROLL_REF' E Extra keyword 'TTYPE39' in a: 'TEMPLATE' E Extra keyword 'TTYPE4' in a: 'FILENAME' E Extra keyword 'TTYPE40' in a: 'OBSLABEL' E Extra keyword 'TTYPE41' in a: 'ENG_QUAL' E Extra keyword 'TTYPE42' in a: 'ENGQLPTG' E Extra keyword 'TTYPE43' in a: 'VISITYPE' E Extra keyword 'TTYPE44' in a: 'VSTSTART' E Extra keyword 'TTYPE45' in a: 'VISITSTA' E Extra keyword 'TTYPE46' in a: 'NEXPOSUR' E Extra keyword 'TTYPE47' in a: 'INTARGET' E Extra keyword 'TTYPE48' in a: 'TARGOOPP' E Extra keyword 'TTYPE49' in a: 'TSOVISIT' E Extra keyword 'TTYPE5' in a: 'FILETYPE' E Extra keyword 'TTYPE50' in a: 'EXP_ONLY' E Extra keyword 'TTYPE51' in a: 'TARGPROP' E Extra keyword 'TTYPE52' in a: 'TARGNAME' E Extra keyword 'TTYPE53' in a: 'TARGTYPE' E Extra keyword 'TTYPE54' in a: 'TARG_RA' E Extra keyword 'TTYPE55' in a: 'TARG_DEC' E Extra keyword 'TTYPE56' in a: 'TARGURA' E Extra keyword 'TTYPE57' in a: 'TARGUDEC' E Extra keyword 'TTYPE58' in a: 'MU_RA' E Extra keyword 'TTYPE59' in a: 'MU_DEC' E Extra keyword 'TTYPE6' in a: 'SDP_VER' E Extra keyword 'TTYPE60' in a: 'MU_EPOCH' E Extra keyword 'TTYPE61' in a: 'PROP_RA' E Extra keyword 'TTYPE62' in a: 'PROP_DEC' E Extra keyword 'TTYPE63' in a: 'SRCTYAPT' E Extra keyword 'TTYPE64' in a: 'INSTRUME' E Extra keyword 'TTYPE65' in a: 'DETECTOR' E Extra keyword 'TTYPE66' in a: 'MODULE' E Extra keyword 'TTYPE67' in a: 'CHANNEL' E Extra keyword 'TTYPE68' in a: 'FILTER' E Extra keyword 'TTYPE69' in a: 'PUPIL' E Extra keyword 'TTYPE7' in a: 'PRD_VER' E Extra keyword 'TTYPE70' in a: 'PILIN' E Extra keyword 'TTYPE71' in a: 'GRATING' E Extra keyword 'TTYPE72' in a: 'BAND' E Extra keyword 'TTYPE73' in a: 'FXD_SLIT' E Extra keyword 'TTYPE74' in a: 'FOCUSPOS' E Extra keyword 'TTYPE75' in a: 'PREIMAGE' E Extra keyword 'TTYPE76' in a: 'CCCSTATE' E Extra keyword 'TTYPE77' in a: 'CORONMSK' E Extra keyword 'TTYPE78' in a: 'MSASTATE' E Extra keyword 'TTYPE79' in a: 'MSAMETFL' E Extra keyword 'TTYPE8' in a: 'CAL_VER' E Extra keyword 'TTYPE80' in a: 'MSAMETID' E Extra keyword 'TTYPE81' in a: 'MSACONID' E Extra keyword 'TTYPE82' in a: 'LAMP' E Extra keyword 'TTYPE83' in a: 'OPMODE' E Extra keyword 'TTYPE84' in a: 'GWA_XTIL' E Extra keyword 'TTYPE85' in a: 'GWA_YTIL' E Extra keyword 'TTYPE86' in a: 'GWA_XP_V' E Extra keyword 'TTYPE87' in a: 'GWA_YP_V' E Extra keyword 'TTYPE88' in a: 'GWA_PXAV' E Extra keyword 'TTYPE89' in a: 'GWA_PYAV' E Extra keyword 'TTYPE9' in a: 'CAL_VCS' E Extra keyword 'TTYPE90' in a: 'GWA_TILT' E Extra keyword 'TTYPE91' in a: 'FWCPOS' E Extra keyword 'TTYPE92' in a: 'PWCPOS' E Extra keyword 'TTYPE93' in a: 'EXPCOUNT' E Extra keyword 'TTYPE94' in a: 'EXPRIPAR' E Extra keyword 'TTYPE95' in a: 'EXP_TYPE' E Extra keyword 'TTYPE96' in a: 'EXPSTART' E Extra keyword 'TTYPE97' in a: 'MJD-BEG' E Extra keyword 'TTYPE98' in a: 'EXPMID' E Extra keyword 'TTYPE99' in a: 'MJD-AVG' E Keyword BITPIX has different values: E a> 8 E b> -32 E Keyword EXTNAME has different values: E a> HDRTAB E b> WHT E Keyword NAXIS2 has different values: E a> 4 E b> 2640 E Keyword NAXIS2 has different comments: E a> length of dimension 2 E Keyword PCOUNT has different comments: E a> number of group parameters E ? ------ E b> number of parameters E Keyword XTENSION has different values: E a> BINTABLE E b> IMAGE E Keyword XTENSION has different comments: E a> binary table extension E b> Image extension E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff628f7bf70>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:23: AssertionError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-06-04 04:46:19,513 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf 2021-06-04 04:46:19,544 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-06-04 04:46:20,427 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-06-04 04:46:20,639 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-06-04 04:46:20,639 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-06-04 04:46:20,641 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-06-04 04:46:20,642 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-06-04 04:46:20,643 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-06-04 04:46:20,643 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:46:20,644 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-06-04 04:46:20,645 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:46:20,645 - stpipe - INFO - OS: Linux 2021-06-04 04:46:20,819 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). 2021-06-04 04:46:20,825 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-06-04 04:46:21,043 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-06-04 04:46:21,051 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-06-04 04:46:21,052 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-06-04 04:46:21,053 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:46:21,054 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-06-04 04:46:22,200 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs running with args (<ModelContainer>,). 2021-06-04 04:46:22,201 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} 2021-06-04 04:46:22,290 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs done 2021-06-04 04:46:22,429 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-06-04 04:46:22,431 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-06-04 04:46:22,493 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:22,493 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:46:22.493126 2021-06-04 04:46:22,493 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:22,493 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-06-04 04:46:22,493 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-06-04 04:46:22,493 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-06-04 04:46:22,494 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:22,494 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-06-04 04:46:25,877 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 2021-06-04 04:46:25,877 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 2021-06-04 04:46:25,877 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 2021-06-04 04:46:25,877 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 2021-06-04 04:46:25,877 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:25,878 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: -0.014872107873521941 [not converted] 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:46:26.353806 2021-06-04 04:46:26,353 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.860680 2021-06-04 04:46:26,354 - stpipe.Image3Pipeline.skymatch - INFO - 2021-06-04 04:46:26,360 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-06-04 04:46:26,508 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-06-04 04:46:26,510 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-06-04 04:46:26,513 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2021-06-04 04:46:30,010 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:46:36,932 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:46:44,129 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:46:51,002 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:46:55,656 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 4 images 2021-06-04 04:46:57,733 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-06-04 04:47:01,897 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-06-04 04:47:06,753 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-06-04 04:47:11,806 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-06-04 04:47:17,673 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-06-04 04:47:22,977 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits 2021-06-04 04:47:23,178 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits 2021-06-04 04:47:23,365 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits 2021-06-04 04:47:23,544 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits 2021-06-04 04:47:23,545 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-06-04 04:47:23,794 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-06-04 04:47:23,795 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:47:23,813 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-06-04 04:47:23,954 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for mt_assoc 2021-06-04 04:47:27,521 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:47:32,976 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:47:38,287 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:47:43,446 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-06-04 04:47:45,789 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 2021-06-04 04:47:46,229 - stpipe.Image3Pipeline.resample - INFO - Saved model in mt_assoc_i2d.fits 2021-06-04 04:47:46,229 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-06-04 04:47:46,468 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). 2021-06-04 04:47:46,469 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-06-04 04:47:46,486 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-06-04 04:47:46,495 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-06-04 04:47:46,495 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-06-04 04:47:46,495 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NRCBLONG 2021-06-04 04:47:46,496 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F250M 2021-06-04 04:47:46,496 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-06-04 04:47:46,496 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-06-04 04:47:46,535 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 2.14887 2021-06-04 04:47:49,969 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 524 sources 2021-06-04 04:47:54,560 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: mt_assoc_cat.ecsv 2021-06-04 04:47:54,662 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in mt_assoc_segm.fits 2021-06-04 04:47:54,663 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: mt_assoc_segm.fits 2021-06-04 04:47:54,664 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2021-06-04 04:47:54,665 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:214 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:367 Step assign_mtwcs running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:371 Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:470 Step assign_mtwcs done INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:46:22.493126 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-06-04 04:46:22.493126 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:46:26.353806 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-06-04 04:46:26.353806 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.860680 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.860680 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 4 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:406 Model size 25.6M available system memory 119.0G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:406 Model size 25.6M available system memory 119.0G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2263955 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2263955 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2539121 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2539121 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2479891 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2479891 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2419310 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2419310 INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:68 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:186 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:406 Model size 25.6M available system memory 117.7G DEBUG stpipe.Image3Pipeline.resample:util.py:406 Model size 25.6M available system memory 117.7G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for mt_assoc INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for mt_assoc DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:step.py:928 Saved model in mt_assoc_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:367 Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:371 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 524 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:120 Wrote source catalog: mt_assoc_cat.ecsv DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:step.py:928 Saved model in mt_assoc_segm.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:126 Wrote segmentation map: mt_assoc_segm.fits INFO stpipe.Image3Pipeline.source_catalog:step.py:470 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:470 Step Image3Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187931520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187931520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187931520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187931520 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] | 0.87 | |
|
input_file = 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update > model.write(rtdata.input) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:46: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:1063: in write self.save(path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff6290871c0> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...t', '>f8'), ('mt_z_jwst', '>f8'), ('mt_jwst_distance', '>f8'), ('mt_sun_distance', '>f8'), ('phase_angle', '>f8')]))},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...64'}, {'name': 'int_mid_BJD_TDB', 'datatype': 'float64'}, {'name': 'int_end_BJD_TDB', 'datatype': 'float64'}])]))]))])} error = <ValidationError: "4 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 4 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 4 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range]>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/posixpath.py:152: TypeError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-06-04 04:47:58,327 - stpipe - INFO - Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:set_telescope_pointing.py:237 Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 INFO stpipe:set_telescope_pointing.py:237 Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[no_mt_table] | 0.83 | |
|
input_file = 'jw00634_nrcblong_no_mtt_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update > model.write(rtdata.input) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:46: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:1063: in write self.save(path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff629096130> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...41 38.878964850', 'v2_ref': -89.596514, 'v3_ref': -491.474153, 'v3yangle': 0.00805772, 'vparity': -1, 'wcsaxes': 2}}},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...64'}, {'name': 'int_mid_BJD_TDB', 'datatype': 'float64'}, {'name': 'int_end_BJD_TDB', 'datatype': 'float64'}])]))]))])} error = <ValidationError: "4 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 4 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 4 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_image_moving_target_kwds[no_mt_table]>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/posixpath.py:152: TypeError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-06-04 04:47:59,255 - stpipe - INFO - Moving target position table not found in the file -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:set_telescope_pointing.py:241 Moving target position table not found in the file INFO stpipe:set_telescope_pointing.py:241 Moving target position table not found in the file | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] | 1.23 | |
|
input_file = 'jw00634_nrcblong_mttest_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update > model.write(rtdata.input) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:46: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:1063: in write self.save(path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff627879d00> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...t', '>f8'), ('mt_z_jwst', '>f8'), ('mt_jwst_distance', '>f8'), ('mt_sun_distance', '>f8'), ('phase_angle', '>f8')]))},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...64'}, {'name': 'int_mid_BJD_TDB', 'datatype': 'float64'}, {'name': 'int_end_BJD_TDB', 'datatype': 'float64'}])]))]))])} error = <ValidationError: "4 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 4 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 4 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_image_moving_target_kwds[with_mt_table]>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/posixpath.py:152: TypeError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-06-04 04:48:00,890 - stpipe - INFO - Moving target RA and Dec updated. -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:set_telescope_pointing.py:244 Moving target RA and Dec updated. INFO stpipe:set_telescope_pointing.py:244 Moving target RA and Dec updated. | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_setpointing | 1.72 | |
|
_jail = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_setpointing(_jail, rtdata, fitsdiff_default_kwargs): """ Regression test of the set_telescope_pointing script on a level-1b NIRCam file. """ # Get SIAF PRD database file siaf_path = rtdata.get_data("common/prd.db") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits") # The add_wcs function overwrites its input rtdata.output = rtdata.input # Call the WCS routine, using the ENGDB_Service try: > add_wcs(rtdata.input, siaf_path=siaf_path) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:91: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/lib/set_telescope_pointing.py:213: in add_wcs model.save(filename) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:511: in save self.to_fits(output_path, *args, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/model_base.py:623: in to_fits with fits_support.to_fits(self._instance, self._schema) as ff: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:395: in to_fits _save_from_schema(hdulist, tree, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/fits_support.py:352: in _save_from_schema validator.validate(tree, _schema=schema) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <asdf.schema._create_validator.<locals>.ASDFValidator object at 0x7ff629877e80> args = ({'asdf_library': {'author': 'Space Telescope Science Institute', 'homepage': 'http://github.com/spacetelescope/asdf',...'siaf_yref_sci': 130.0, 'ra_ref': 98.81825770661473, 'dec_ref': -66.83269796058875, 'roll_ref': 143.25260098398002}}},) kwargs = {'_schema': OrderedDict([('$schema', 'http://stsci.edu/schemas/fits-schema/fits-schema'), ('id', 'http://stsci.edu/sch...64'}, {'name': 'int_mid_BJD_TDB', 'datatype': 'float64'}, {'name': 'int_end_BJD_TDB', 'datatype': 'float64'}])]))]))])} error = <ValidationError: "0 is not of type 'string'"> def validate(self, *args, **kwargs): for error in self.iter_errors(*args, **kwargs): > raise error E jsonschema.exceptions.ValidationError: 0 is not of type 'string' E E Failed validating 'type' in schema['properties']['meta']['properties']['dither']['properties']['dither_points']: E OrderedDict([('title', E 'Total number of points in primary dither pattern'), E ('type', 'string'), E ('fits_keyword', 'NDITHPTS')]) E E On instance['meta']['dither']['dither_points']: E 0 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jsonschema/validators.py:353: ValidationErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_setpointing>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/posixpath.py:152: TypeError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-06-04 04:48:05,849 - stpipe - INFO - Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits 2021-06-04 04:48:05,927 - stpipe - INFO - Updating WCS for aperture NRCA5_GRISM256_F444W 2021-06-04 04:48:05,927 - stpipe - INFO - Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro 2021-06-04 04:48:05,927 - stpipe - INFO - Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 2021-06-04 04:48:05,928 - stpipe - INFO - loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro 2021-06-04 04:48:05,929 - stpipe - INFO - TSO exposure: 2021-06-04 04:48:05,929 - stpipe - INFO - setting xref_sci to 769.0 2021-06-04 04:48:05,930 - stpipe - INFO - setting yref_sci to 130.0 2021-06-04 04:48:05,930 - stpipe - INFO - Updating wcs from telemetry. 2021-06-04 04:48:05,930 - stpipe - INFO - Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 2021-06-04 04:48:05,930 - stpipe - INFO - Telemetry search tolerance = 60 2021-06-04 04:48:05,930 - stpipe - INFO - Reduction function = <function pointing_from_average at 0x7ff62add5c10> 2021-06-04 04:48:06,460 - stpipe - INFO - Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ 2021-06-04 04:48:07,022 - stpipe - INFO - Reduced set of pointings: 2021-06-04 04:48:07,022 - stpipe - INFO - Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-06-04 04:48:07,023 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-06-04 04:48:07,023 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-06-04 04:48:07,023 - stpipe - INFO - Successful read of engineering quaternions: 2021-06-04 04:48:07,024 - stpipe - INFO - Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-06-04 04:48:07,024 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-06-04 04:48:07,024 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-06-04 04:48:07,025 - stpipe - INFO - Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. 2021-06-04 04:48:07,025 - stpipe - INFO - Setting ENGQLPTG keyword to CALCULATED 2021-06-04 04:48:07,025 - stpipe - INFO - Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) 2021-06-04 04:48:07,025 - stpipe - INFO - V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) 2021-06-04 04:48:07,028 - stpipe - INFO - Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) 2021-06-04 04:48:07,030 - stpipe - INFO - Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:464 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7ff62add5c10> INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7ff62add5c10> DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 298544 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 298544 INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) INFO stpipe:util.py:937 Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 INFO stpipe:util.py:937 Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_setpointing | 1.04 | |
|
_jail = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes..., 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_setpointing(_jail, rtdata, fitsdiff_default_kwargs): """ Regression test of the set_telescope_pointing script on a level-1b NIRCam TSO imaging file. """ # Get SIAF PRD database file siaf_path = rtdata.get_data("common/prd.db") rtdata.get_data("nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits") # The add_wcs function overwrites its input, so output = input rtdata.output = rtdata.input # Call the WCS routine, using the ENGDB_Service try: add_wcs(rtdata.input, siaf_path=siaf_path) except ValueError: pytest.skip('Engineering Database not available.') rtdata.get_truth("truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits") fitsdiff_default_kwargs['rtol'] = 1e-6 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/truth/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-06, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 153 E b: 152 E Inconsistent duplicates of keyword '' : E Occurs 13 time(s) in a, 12 times in (b) E Keyword [9] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [10] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [11] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [12] has different values: E a> Time information E b> Guide star information E Keyword ENGQLPTG has different values: E a> CALCULATED E b> CALCULATED_ORIGINAL E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 55 E b: 56 E Inconsistent duplicates of keyword '' : E Occurs 3 time(s) in a, 4 times in (b) E Keyword has different values: E a> Information about the coordinates in the file E b> JWST ephemeris information E Keyword [2] has different values: E a> Spacecraft pointing information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> WCS parameters E b> Spacecraft pointing information E Keyword EPH_TIME has different comments: E b> UTC time of position and velocity vectors in ep E Keyword EPH_TYPE has different comments: E b> Definitive or Predicted E Keyword JWST_DX has different comments: E b> [km/s] barycentric JWST X velocity at MJD_AVG E Keyword JWST_DY has different comments: E b> [km/s] barycentric JWST Y velocity at MJD_AVG E Keyword JWST_DZ has different comments: E b> [km/s] barycentric JWST Z velocity at MJD_AVG E Keyword JWST_X has different comments: E b> [km] barycentric JWST X coordinate at MJD_AVG E Keyword JWST_Y has different comments: E b> [km] barycentric JWST Y coordinate at MJD_AVG E Keyword JWST_Z has different comments: E b> [km] barycentric JWST Z coordinate at MJD_AVG E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6277b3670>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:87: AssertionError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-06-04 04:48:11,299 - stpipe - INFO - Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits 2021-06-04 04:48:11,384 - stpipe - INFO - Updating WCS for aperture NRCB1_SUB64P 2021-06-04 04:48:11,384 - stpipe - INFO - Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro 2021-06-04 04:48:11,384 - stpipe - INFO - Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 2021-06-04 04:48:11,385 - stpipe - INFO - loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro 2021-06-04 04:48:11,386 - stpipe - INFO - Setting basic FITS WCS keywords for imaging 2021-06-04 04:48:11,389 - stpipe - INFO - TSO exposure: 2021-06-04 04:48:11,389 - stpipe - INFO - setting xref_sci to 32.5 2021-06-04 04:48:11,389 - stpipe - INFO - setting yref_sci to 32.5 2021-06-04 04:48:11,390 - stpipe - INFO - Updating wcs from telemetry. 2021-06-04 04:48:11,390 - stpipe - INFO - Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 2021-06-04 04:48:11,390 - stpipe - INFO - Telemetry search tolerance = 60 2021-06-04 04:48:11,390 - stpipe - INFO - Reduction function = <function pointing_from_average at 0x7ff62add5c10> 2021-06-04 04:48:11,420 - stpipe - INFO - Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ 2021-06-04 04:48:11,752 - stpipe - INFO - Reduced set of pointings: 2021-06-04 04:48:11,752 - stpipe - INFO - Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-06-04 04:48:11,752 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-06-04 04:48:11,752 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-06-04 04:48:11,753 - stpipe - INFO - Successful read of engineering quaternions: 2021-06-04 04:48:11,753 - stpipe - INFO - Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-06-04 04:48:11,753 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-06-04 04:48:11,753 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-06-04 04:48:11,754 - stpipe - INFO - Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. 2021-06-04 04:48:11,755 - stpipe - INFO - Setting ENGQLPTG keyword to CALCULATED 2021-06-04 04:48:11,755 - stpipe - INFO - Aperture WCS info: WCSRef(ra=99.0135777003569, dec=-66.81781129632121, pa=143.57702860735037) 2021-06-04 04:48:11,755 - stpipe - INFO - V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) 2021-06-04 04:48:11,759 - stpipe - INFO - Vertices for aperture NRCB1_SUB64P: (-0.9783, 0.9785, 0.9782, -0.978, -0.9841, -0.978, 0.9842, 0.9782) 2021-06-04 04:48:11,762 - stpipe - INFO - Update S_REGION to POLYGON ICRS 99.012609926 -66.817752684 99.013723527 -66.817431316 99.014545464 -66.817869942 99.013432237 -66.818191239 2021-06-04 04:48:11,828 - stpipe - INFO - ...update completed -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCB1_SUB64P INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCB1_SUB64P INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1506 Setting basic FITS WCS keywords for imaging INFO stpipe:set_telescope_pointing.py:1506 Setting basic FITS WCS keywords for imaging INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7ff62add5c10> INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7ff62add5c10> DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 298544 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 298544 INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=99.0135777003569, dec=-66.81781129632121, pa=143.57702860735037) INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=99.0135777003569, dec=-66.81781129632121, pa=143.57702860735037) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCB1_SUB64P: (-0.9783, 0.9785, 0.9782, -0.978, -0.9841, -0.978, 0.9842, 0.9782) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCB1_SUB64P: (-0.9783, 0.9785, 0.9782, -0.978, -0.9841, -0.978, 0.9842, 0.9782) INFO stpipe:util.py:937 Update S_REGION to POLYGON ICRS 99.012609926 -66.817752684 99.013723527 -66.817431316 99.014545464 -66.817869942 99.013432237 -66.818191239 INFO stpipe:util.py:937 Update S_REGION to POLYGON ICRS 99.012609926 -66.817752684 99.013723527 -66.817431316 99.014545464 -66.817869942 99.013432237 -66.818191239 INFO stpipe:set_telescope_pointing.py:214 ...update completed INFO stpipe:set_telescope_pointing.py:214 ...update completed DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 192960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 192960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 192960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 192960 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] | 14.65 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632003002_03105_00001_nrca4_cal.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632003002_03105_00001_nrca4_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 261 E b: 260 E Inconsistent duplicates of keyword '' : E Occurs 49 time(s) in a, 48 times in (b) E Keyword [10] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [11] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [12] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [13] has different values: E a> Time information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [14] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Guide star information E Keyword [15] has different values: E a> Guide star information E b> Reference file information E Keyword [16] has different values: E a> Reference file information E b> CRDS parameters E Keyword [17] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [18] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [19] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [20] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [21] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [22] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [23] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [24] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [25] has different values: E a> Flat reference file information E b> DFlat reference file information E ? + E Keyword [26] has different values: E a> DFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [27] has different values: E a> FFlat reference file information E ? ^ E b> SFlat reference file information E ? ^ E Keyword [28] has different values: E a> SFlat reference file information E ? ^ -- E b> Nirspec FORE Model reference file information E ? ^^^^^^^^ ++++++++ E Keyword [29] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [30] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [31] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [32] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [34] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [35] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [36] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [37] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Nirspec OTE Model reference file information E b> Persistence saturation reference file information E Keyword [39] has different values: E a> Persistence saturation reference file information E b> Photometric reference file information E Keyword [40] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [41] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [42] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [43] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [44] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [45] has different values: E a> Superbias reference file information E ? ^^ ^^ ^^ E b> Trap density reference file information E ? ^^^ ++ ^^ ^^ E Keyword [46] has different values: E a> Trap density reference file information E ? ^ ^ --- E b> Trap parameters reference file information E ? ^^^^^ ^^^ E Keyword [47] has different values: E a> Trap parameters reference file information E b> Wavelength Range reference file information E Keyword [48] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6294ed490>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError -----------------------------Captured stderr setup------------------------------ 2021-06-04 04:48:14,665 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0001.asdf 2021-06-04 04:48:14,693 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:48:14,694 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:48:14,695 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:48:14,696 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:48:14,697 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:48:14,698 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:48:14,698 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:48:14,698 - stpipe - INFO - OS: Linux 2021-06-04 04:48:14,899 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image2_001_asn.json',). 2021-06-04 04:48:14,904 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:48:15,086 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00632003002_03105_00001_nrca4_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-06-04 04:48:15,098 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits'. 2021-06-04 04:48:15,099 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:48:15,100 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:48:15,100 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:48:15,100 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:48:15,100 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf'. 2021-06-04 04:48:15,102 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:48:15,102 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf'. 2021-06-04 04:48:15,103 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits'. 2021-06-04 04:48:15,104 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:48:15,104 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:48:15,105 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:48:15,105 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:48:15,105 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:48:15,105 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:48:15,105 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:48:15,105 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits'. 2021-06-04 04:48:15,106 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:48:15,107 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:48:15,107 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:48:15,107 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:48:15,107 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-06-04 04:48:15,107 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:48:15,121 - stpipe.Image2Pipeline - INFO - Processing product jw00632003002_03105_00001_nrca4 2021-06-04 04:48:15,121 - stpipe.Image2Pipeline - INFO - Working on input jw00632003002_03105_00001_nrca4_rate.fits ... 2021-06-04 04:48:15,396 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-06-04 04:48:15,397 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:48:15,601 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0. 2021-06-04 04:48:15,693 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 2021-06-04 04:48:15,694 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 2021-06-04 04:48:15,694 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:48:15,749 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:48:15,854 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-06-04 04:48:15,855 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:48:17,832 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:48:17,940 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-06-04 04:48:17,941 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} 2021-06-04 04:48:17,966 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits 2021-06-04 04:48:17,966 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits 2021-06-04 04:48:18,058 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:48:18,058 - stpipe.Image2Pipeline.photom - INFO - detector: NRCA4 2021-06-04 04:48:18,058 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:48:18,058 - stpipe.Image2Pipeline.photom - INFO - filter: F212N 2021-06-04 04:48:18,058 - stpipe.Image2Pipeline.photom - INFO - pupil: WLP8 2021-06-04 04:48:18,537 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:48:18,539 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 42.7118 2021-06-04 04:48:18,577 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:48:18,688 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-06-04 04:48:18,689 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:48:18,689 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:48:18,689 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:48:18,690 - stpipe.Image2Pipeline - INFO - Finished processing product jw00632003002_03105_00001_nrca4 2021-06-04 04:48:18,690 - stpipe.Image2Pipeline - INFO - Processing product jw00632003002_03105_00002_nrca4 2021-06-04 04:48:18,691 - stpipe.Image2Pipeline - INFO - Working on input jw00632003002_03105_00002_nrca4_rate.fits ... 2021-06-04 04:48:18,962 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-06-04 04:48:18,964 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:48:19,149 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0. 2021-06-04 04:48:19,224 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 2021-06-04 04:48:19,224 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 2021-06-04 04:48:19,224 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:48:19,277 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:48:19,399 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-06-04 04:48:19,400 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:48:19,800 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:48:19,925 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-06-04 04:48:19,926 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} 2021-06-04 04:48:19,953 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits 2021-06-04 04:48:19,953 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits 2021-06-04 04:48:20,053 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:48:20,053 - stpipe.Image2Pipeline.photom - INFO - detector: NRCA4 2021-06-04 04:48:20,053 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:48:20,053 - stpipe.Image2Pipeline.photom - INFO - filter: F212N 2021-06-04 04:48:20,054 - stpipe.Image2Pipeline.photom - INFO - pupil: WLP8 2021-06-04 04:48:20,101 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:48:20,102 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 42.7118 2021-06-04 04:48:20,136 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:48:20,250 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-06-04 04:48:20,251 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:48:20,251 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-06-04 04:48:20,251 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:48:20,252 - stpipe.Image2Pipeline - INFO - Finished processing product jw00632003002_03105_00002_nrca4 2021-06-04 04:48:20,252 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-06-04 04:48:20,474 - stpipe.Image2Pipeline - INFO - Saved model in jw00632003002_03105_00001_nrca4_cal.fits 2021-06-04 04:48:20,680 - stpipe.Image2Pipeline - INFO - Saved model in jw00632003002_03105_00002_nrca4_cal.fits 2021-06-04 04:48:20,680 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-06-04 04:48:21,110 - stpipe.WfsCombine - INFO - WfsCombineStep instance created. 2021-06-04 04:48:21,110 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:48:21,110 - stpipe - INFO - OS: Linux 2021-06-04 04:48:21,349 - stpipe.WfsCombine - INFO - Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json',). 2021-06-04 04:48:21,350 - stpipe.WfsCombine - INFO - Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': False} 2021-06-04 04:48:21,361 - stpipe.WfsCombine - INFO - Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json 2021-06-04 04:48:21,362 - stpipe.WfsCombine - INFO - The number of pairs of input files: 1 2021-06-04 04:48:21,570 - stpipe.WfsCombine - INFO - File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits 2021-06-04 04:48:21,570 - stpipe.WfsCombine - INFO - File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits 2021-06-04 04:48:21,570 - stpipe.WfsCombine - INFO - Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 2021-06-04 04:48:21,570 - stpipe.WfsCombine - INFO - do_refine: False 2021-06-04 04:48:21,784 - stpipe.WfsCombine - INFO - Final x,y offset in pixels: -3 -2 2021-06-04 04:48:22,466 - stpipe.WfsCombine - INFO - Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits 2021-06-04 04:48:22,467 - stpipe.WfsCombine - INFO - Step WfsCombine done 2021-06-04 04:48:22,849 - stpipe.WfsCombine - INFO - WfsCombineStep instance created. 2021-06-04 04:48:22,849 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:48:22,849 - stpipe - INFO - OS: Linux 2021-06-04 04:48:23,131 - stpipe.WfsCombine - INFO - Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json',). 2021-06-04 04:48:23,133 - stpipe.WfsCombine - INFO - Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': True} 2021-06-04 04:48:23,143 - stpipe.WfsCombine - INFO - Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json 2021-06-04 04:48:23,143 - stpipe.WfsCombine - INFO - The number of pairs of input files: 1 2021-06-04 04:48:23,308 - stpipe.WfsCombine - INFO - File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits 2021-06-04 04:48:23,308 - stpipe.WfsCombine - INFO - File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits 2021-06-04 04:48:23,309 - stpipe.WfsCombine - INFO - Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine 2021-06-04 04:48:23,309 - stpipe.WfsCombine - INFO - do_refine: True 2021-06-04 04:48:24,028 - stpipe.WfsCombine - INFO - Approximate centroid of image 1 PSF has x,y : 1695 1713 2021-06-04 04:48:24,567 - stpipe.WfsCombine - INFO - From the refined offsets calculation,the x,y changes in ofsets are: 2 0 2021-06-04 04:48:24,567 - stpipe.WfsCombine - INFO - Values for the refined offsets are, for x,y : -1 -2 2021-06-04 04:48:24,567 - stpipe.WfsCombine - INFO - Final x,y offset in pixels: -1 -2 2021-06-04 04:48:25,178 - stpipe.WfsCombine - INFO - Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits 2021-06-04 04:48:25,179 - stpipe.WfsCombine - INFO - Step WfsCombine done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0001.asdf INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0001.asdf INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image2_001_asn.json',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image2Pipeline:container.py:208 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image2Pipeline:container.py:214 Files accepted for processing jw00632003002_03105_00001_nrca4_rate.fits: DEBUG stpipe.Image2Pipeline:container.py:214 Files accepted for processing jw00632003002_03105_00001_nrca4_rate.fits: DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00632003002_03105_00001_nrca4_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product jw00632003002_03105_00001_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input jw00632003002_03105_00001_nrca4_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product jw00632003002_03105_00001_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product jw00632003002_03105_00002_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input jw00632003002_03105_00002_nrca4_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00002_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00002_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product jw00632003002_03105_00002_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.WfsCombine:step.py:321 WfsCombineStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.WfsCombine:step.py:367 Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json',). INFO stpipe.WfsCombine:step.py:371 Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': False} INFO stpipe.WfsCombine:wfs_combine_step.py:25 Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json INFO stpipe.WfsCombine:wfs_combine_step.py:26 The number of pairs of input files: 1 DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: False INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: False DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -3 -2 INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -3 -2 DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:step.py:928 Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits INFO stpipe.WfsCombine:step.py:470 Step WfsCombine done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.WfsCombine:step.py:321 WfsCombineStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.WfsCombine:step.py:367 Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json',). INFO stpipe.WfsCombine:step.py:371 Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': True} INFO stpipe.WfsCombine:wfs_combine_step.py:25 Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json INFO stpipe.WfsCombine:wfs_combine_step.py:26 The number of pairs of input files: 1 DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: True INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: True DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:159 Approximate centroid of image 1 PSF has x,y : 1695 1713 INFO stpipe.WfsCombine:wfs_combine.py:159 Approximate centroid of image 1 PSF has x,y : 1695 1713 INFO stpipe.WfsCombine:wfs_combine.py:187 From the refined offsets calculation,the x,y changes in ofsets are: 2 0 INFO stpipe.WfsCombine:wfs_combine.py:187 From the refined offsets calculation,the x,y changes in ofsets are: 2 0 INFO stpipe.WfsCombine:wfs_combine.py:195 Values for the refined offsets are, for x,y : -1 -2 INFO stpipe.WfsCombine:wfs_combine.py:195 Values for the refined offsets are, for x,y : -1 -2 INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -1 -2 INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -1 -2 DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:step.py:928 Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits INFO stpipe.WfsCombine:step.py:470 Step WfsCombine done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal2] | 1.40 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632003002_03105_00002_nrca4_cal.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632003002_03105_00002_nrca4_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 261 E b: 260 E Inconsistent duplicates of keyword '' : E Occurs 49 time(s) in a, 48 times in (b) E Keyword [10] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [11] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [12] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [13] has different values: E a> Time information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [14] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Guide star information E Keyword [15] has different values: E a> Guide star information E b> Reference file information E Keyword [16] has different values: E a> Reference file information E b> CRDS parameters E Keyword [17] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [18] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [19] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [20] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [21] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [22] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [23] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [24] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [25] has different values: E a> Flat reference file information E b> DFlat reference file information E ? + E Keyword [26] has different values: E a> DFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [27] has different values: E a> FFlat reference file information E ? ^ E b> SFlat reference file information E ? ^ E Keyword [28] has different values: E a> SFlat reference file information E ? ^ -- E b> Nirspec FORE Model reference file information E ? ^^^^^^^^ ++++++++ E Keyword [29] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [30] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [31] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [32] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [34] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [35] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [36] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [37] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Nirspec OTE Model reference file information E b> Persistence saturation reference file information E Keyword [39] has different values: E a> Persistence saturation reference file information E b> Photometric reference file information E Keyword [40] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [41] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [42] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [43] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [44] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [45] has different values: E a> Superbias reference file information E ? ^^ ^^ ^^ E b> Trap density reference file information E ? ^^^ ++ ^^ ^^ E Keyword [46] has different values: E a> Trap density reference file information E ? ^ ^ --- E b> Trap parameters reference file information E ? ^^^^^ ^^^ E Keyword [47] has different values: E a> Trap parameters reference file information E b> Wavelength Range reference file information E Keyword [48] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff62786c100>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb1] | 0.88 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...remote': 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 252 E b: 241 E Extra keyword 'EPH_TIME' in a: 58627.68472222222 E Extra keyword 'EPH_TYPE' in a: 'Predicted' E Extra keyword 'JWST_DX' in a: 0.115259470846338 E Extra keyword 'JWST_DY' in a: -0.126774624565631 E Extra keyword 'JWST_DZ' in a: -0.11066111037635 E Extra keyword 'JWST_X' in a: -1265902.82496211 E Extra keyword 'JWST_Y' in a: -879964.120124739 E Extra keyword 'JWST_Z' in a: -192282.447187418 E Extra keyword 'NDITHPTS' in a: '2MINUS' E Extra keyword 'REFFRAME' in a: 'EME2000' E Inconsistent duplicates of keyword '' : E Occurs 49 time(s) in a, 48 times in (b) E Keyword [10] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [11] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [12] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [13] has different values: E a> Time information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [14] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Guide star information E Keyword [15] has different values: E a> Guide star information E b> Reference file information E Keyword [16] has different values: E a> Reference file information E b> CRDS parameters E Keyword [17] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [18] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [19] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [20] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [21] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [22] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [23] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [24] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [25] has different values: E a> Flat reference file information E b> DFlat reference file information E ? + E Keyword [26] has different values: E a> DFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [27] has different values: E a> FFlat reference file information E ? ^ E b> SFlat reference file information E ? ^ E Keyword [28] has different values: E a> SFlat reference file information E ? ^ -- E b> Nirspec FORE Model reference file information E ? ^^^^^^^^ ++++++++ E Keyword [29] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [30] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [31] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [32] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [34] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [35] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [36] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [37] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Nirspec OTE Model reference file information E b> Persistence saturation reference file information E Keyword [39] has different values: E a> Persistence saturation reference file information E b> Photometric reference file information E Keyword [40] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [41] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [42] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [43] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [44] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [45] has different values: E a> Superbias reference file information E ? ^^ ^^ ^^ E b> Trap density reference file information E ? ^^^ ++ ^^ ^^ E Keyword [46] has different values: E a> Trap density reference file information E ? ^ ^ --- E b> Trap parameters reference file information E ? ^^^^^ ^^^ E Keyword [47] has different values: E a> Trap parameters reference file information E b> Wavelength Range reference file information E Keyword [48] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff6295a03a0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50391360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50391360 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50391360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50391360 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb2] | 0.69 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...: 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 252 E b: 241 E Extra keyword 'EPH_TIME' in a: 58627.68472222222 E Extra keyword 'EPH_TYPE' in a: 'Predicted' E Extra keyword 'JWST_DX' in a: 0.115259470846338 E Extra keyword 'JWST_DY' in a: -0.126774624565631 E Extra keyword 'JWST_DZ' in a: -0.11066111037635 E Extra keyword 'JWST_X' in a: -1265902.82496211 E Extra keyword 'JWST_Y' in a: -879964.120124739 E Extra keyword 'JWST_Z' in a: -192282.447187418 E Extra keyword 'NDITHPTS' in a: '2MINUS' E Extra keyword 'REFFRAME' in a: 'EME2000' E Inconsistent duplicates of keyword '' : E Occurs 49 time(s) in a, 48 times in (b) E Keyword [10] has different values: E a> JWST ephemeris information E b> Aperture information E Keyword [11] has different values: E a> Aperture information E b> Velocity aberration correction information E Keyword [12] has different values: E a> Velocity aberration correction information E b> Time information E Keyword [13] has different values: E a> Time information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [14] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Guide star information E Keyword [15] has different values: E a> Guide star information E b> Reference file information E Keyword [16] has different values: E a> Reference file information E b> CRDS parameters E Keyword [17] has different values: E a> CRDS parameters E b> Pixel area reference file information E Keyword [18] has different values: E a> Pixel area reference file information E ? ^ ^ ^^ - E b> Nirspec Camera reference file information E ? ^ ^^^ ^^^ ++ E Keyword [19] has different values: E a> Nirspec Camera reference file information E ? ^^ - E b> Nirspec Collimator reference file information E ? +++++ ^^ E Keyword [20] has different values: E a> Nirspec Collimator reference file information E b> Dark reference file information E Keyword [21] has different values: E a> Dark reference file information E ? ^ ^ E b> Disperser reference file information E ? ^^^^ ^^^ E Keyword [22] has different values: E a> Disperser reference file information E ? ^^ ^^^ E b> Distortion reference file information E ? ^^ ^^^^ E Keyword [23] has different values: E a> Distortion reference file information E ? ^ ------ E b> Filter Offset reference file information E ? ^ ++++++++ + E Keyword [24] has different values: E a> Filter Offset reference file information E ? - --------- E b> Flat reference file information E ? + E Keyword [25] has different values: E a> Flat reference file information E b> DFlat reference file information E ? + E Keyword [26] has different values: E a> DFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [27] has different values: E a> FFlat reference file information E ? ^ E b> SFlat reference file information E ? ^ E Keyword [28] has different values: E a> SFlat reference file information E ? ^ -- E b> Nirspec FORE Model reference file information E ? ^^^^^^^^ ++++++++ E Keyword [29] has different values: E a> Nirspec FORE Model reference file information E ? ^^^ E b> Nirspec FPA Model reference file information E ? ^^ E Keyword [30] has different values: E a> Nirspec FPA Model reference file information E b> Gain reference file information E Keyword [31] has different values: E a> Gain reference file information E ? ^^^^ E b> IFU fore reference file information E ? ^^^^^^^^ E Keyword [32] has different values: E a> IFU fore reference file information E ? ^ ^^ E b> IFU post reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU post reference file information E ? -- ^ E b> IFU slicer reference file information E ? ^^^^^ E Keyword [34] has different values: E a> IFU slicer reference file information E ? ^^^^^^ ^ E b> Linearity reference file information E ? ^ ^ + +++ E Keyword [35] has different values: E a> Linearity reference file information E ? ^^^^ ^^^^ E b> Mask reference file information E ? ^ ^^ E Keyword [36] has different values: E a> Mask reference file information E b> Nirspec MSA Model reference file information E Keyword [37] has different values: E a> Nirspec MSA Model reference file information E ? ^^^ E b> Nirspec OTE Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Nirspec OTE Model reference file information E b> Persistence saturation reference file information E Keyword [39] has different values: E a> Persistence saturation reference file information E b> Photometric reference file information E Keyword [40] has different values: E a> Photometric reference file information E ? ^^ ^^^ ---- E b> Read noise reference file information E ? ^^^^^^ ^^ E Keyword [41] has different values: E a> Read noise reference file information E ? ^^^ -- - E b> Regions reference file information E ? ^^^ E Keyword [42] has different values: E a> Regions reference file information E ? ^^^ - E b> Saturation reference file information E ? ^^^^^^^ E Keyword [43] has different values: E a> Saturation reference file information E ? ^ - E b> Spectral distortion reference file information E ? ^^^ ++++++++ E Keyword [44] has different values: E a> Spectral distortion reference file information E ? -- ---- ------- E b> Superbias reference file information E ? + ++ E Keyword [45] has different values: E a> Superbias reference file information E ? ^^ ^^ ^^ E b> Trap density reference file information E ? ^^^ ++ ^^ ^^ E Keyword [46] has different values: E a> Trap density reference file information E ? ^ ^ --- E b> Trap parameters reference file information E ? ^^^^^ ^^^ E Keyword [47] has different values: E a> Trap parameters reference file information E b> Wavelength Range reference file information E Keyword [48] has different values: E a> Wavelength Range reference file information E b> Calibration step information E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7ff628afca60>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50391360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50391360 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50391360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50391360 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] | 87.43 | |
|
-----------------------------Captured stderr setup------------------------------ 2021-06-04 04:40:34,552 - stpipe - INFO - PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf 2021-06-04 04:40:34,572 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created. 2021-06-04 04:40:34,573 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created. 2021-06-04 04:40:34,573 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created. 2021-06-04 04:40:34,574 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created. 2021-06-04 04:40:34,575 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created. 2021-06-04 04:40:34,575 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created. 2021-06-04 04:40:34,576 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created. 2021-06-04 04:40:34,577 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created. 2021-06-04 04:40:34,577 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created. 2021-06-04 04:40:34,578 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created. 2021-06-04 04:40:34,579 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created. 2021-06-04 04:40:34,579 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created. 2021-06-04 04:40:34,580 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created. 2021-06-04 04:40:34,581 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created. 2021-06-04 04:40:34,582 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created. 2021-06-04 04:40:34,582 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created. 2021-06-04 04:40:34,583 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created. 2021-06-04 04:40:34,583 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:40:34,583 - stpipe - INFO - OS: Linux 2021-06-04 04:40:34,931 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits',). 2021-06-04 04:40:34,940 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}}} 2021-06-04 04:40:35,271 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] 2021-06-04 04:40:35,281 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits'. 2021-06-04 04:40:35,282 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. 2021-06-04 04:40:35,283 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits'. 2021-06-04 04:40:35,284 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0038.fits'. 2021-06-04 04:40:35,286 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0016.fits'. 2021-06-04 04:40:35,287 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. 2021-06-04 04:40:35,288 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'. 2021-06-04 04:40:35,288 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'. 2021-06-04 04:40:35,288 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'. 2021-06-04 04:40:35,288 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits'. 2021-06-04 04:40:35,289 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits'. 2021-06-04 04:40:35,291 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0004.fits'. 2021-06-04 04:40:35,292 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0002.fits'. 2021-06-04 04:40:35,293 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ... 2021-06-04 04:40:35,855 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). 2021-06-04 04:40:35,856 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-06-04 04:40:36,079 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES=1 is a power of 2; correction not needed 2021-06-04 04:40:36,079 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped 2021-06-04 04:40:36,080 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done 2021-06-04 04:40:36,277 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). 2021-06-04 04:40:36,279 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-06-04 04:40:36,298 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0038.fits 2021-06-04 04:40:36,565 - stpipe.Detector1Pipeline.dq_init - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:36,663 - stpipe.Detector1Pipeline.dq_init - WARNING - Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:37,348 - stpipe.Detector1Pipeline.dq_init - INFO - Saved model in jw42424001001_01101_00001_nrca5_dq_init.fits 2021-06-04 04:40:37,348 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done 2021-06-04 04:40:37,517 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dq_init.fits>,). 2021-06-04 04:40:37,518 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-06-04 04:40:37,537 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits 2021-06-04 04:40:38,060 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:38,061 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:38,061 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:38,061 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:38,061 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:38,856 - stpipe.Detector1Pipeline.saturation - INFO - Detected 35212 saturated pixels 2021-06-04 04:40:38,885 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels 2021-06-04 04:40:39,292 - stpipe.Detector1Pipeline.saturation - INFO - Saved model in jw42424001001_01101_00001_nrca5_saturation.fits 2021-06-04 04:40:39,292 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done 2021-06-04 04:40:39,420 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). 2021-06-04 04:40:39,421 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-06-04 04:40:39,421 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped. 2021-06-04 04:40:39,422 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done 2021-06-04 04:40:39,519 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). 2021-06-04 04:40:39,520 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-06-04 04:40:39,538 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits 2021-06-04 04:40:40,363 - stpipe.Detector1Pipeline.superbias - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:41,076 - stpipe.Detector1Pipeline.superbias - INFO - Saved model in jw42424001001_01101_00001_nrca5_superbias.fits 2021-06-04 04:40:41,077 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done 2021-06-04 04:40:41,273 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_superbias.fits>,). 2021-06-04 04:40:41,274 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} 2021-06-04 04:40:41,283 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True 2021-06-04 04:40:41,283 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True 2021-06-04 04:40:41,283 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11 2021-06-04 04:40:41,283 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000 2021-06-04 04:40:41,283 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True 2021-06-04 04:40:44,479 - stpipe.Detector1Pipeline.refpix - INFO - Saved model in jw42424001001_01101_00001_nrca5_refpix.fits 2021-06-04 04:40:44,479 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done 2021-06-04 04:40:44,645 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_refpix.fits>,). 2021-06-04 04:40:44,646 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-06-04 04:40:44,666 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits 2021-06-04 04:40:45,546 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:45,546 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:45,546 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:45,546 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:45,547 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:45,547 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:45,547 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:47,087 - stpipe.Detector1Pipeline.linearity - INFO - Saved model in jw42424001001_01101_00001_nrca5_linearity.fits 2021-06-04 04:40:47,087 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done 2021-06-04 04:40:47,312 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). 2021-06-04 04:40:47,313 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} 2021-06-04 04:40:48,201 - stpipe.Detector1Pipeline.persistence - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:40:51,656 - stpipe.Detector1Pipeline.persistence - INFO - Saved model in jw42424001001_01101_00001_nrca5_trapsfilled.fits 2021-06-04 04:40:51,659 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence done 2021-06-04 04:40:51,899 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). 2021-06-04 04:40:51,901 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None} 2021-06-04 04:40:51,922 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits 2021-06-04 04:41:12,323 - stpipe.Detector1Pipeline.dark_current - WARNING - Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:41:12,324 - stpipe.Detector1Pipeline.dark_current - WARNING - Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored 2021-06-04 04:41:12,326 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=7, nframes=1, groupgap=1 2021-06-04 04:41:12,326 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=108, nframes=1, groupgap=0 2021-06-04 04:41:14,416 - stpipe.Detector1Pipeline.dark_current - INFO - Saved model in jw42424001001_01101_00001_nrca5_dark_current.fits 2021-06-04 04:41:14,416 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done 2021-06-04 04:41:14,953 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dark_current.fits>,). 2021-06-04 04:41:14,954 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0} 2021-06-04 04:41:14,963 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 50 sigma 2021-06-04 04:41:14,975 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits 2021-06-04 04:41:15,553 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits 2021-06-04 04:41:15,737 - stpipe.Detector1Pipeline.jump - INFO - Found 32 possible cores to use for jump detection 2021-06-04 04:41:16,136 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method 2021-06-04 04:41:16,441 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1: 2021-06-04 04:41:18,047 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 4713 pixels with at least one CR 2021-06-04 04:41:18,405 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 2.26897 sec 2021-06-04 04:41:18,409 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 3.445768 2021-06-04 04:41:18,849 - stpipe.Detector1Pipeline.jump - INFO - Saved model in jw42424001001_01101_00001_nrca5_jump.fits 2021-06-04 04:41:18,850 - stpipe.Detector1Pipeline.jump - INFO - Step jump done 2021-06-04 04:41:19,005 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). 2021-06-04 04:41:19,006 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} 2021-06-04 04:41:19,036 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits 2021-06-04 04:41:19,071 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits 2021-06-04 04:41:19,109 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols 2021-06-04 04:41:19,109 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal 2021-06-04 04:41:45,229 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 7 2021-06-04 04:41:45,229 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1 2021-06-04 04:41:45,383 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done 2021-06-04 04:41:45,536 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). 2021-06-04 04:41:45,537 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-06-04 04:41:45,588 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2021-06-04 04:41:45,588 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2021-06-04 04:41:45,590 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2021-06-04 04:41:45,686 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). 2021-06-04 04:41:45,687 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-06-04 04:41:45,732 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2021-06-04 04:41:45,732 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2021-06-04 04:41:45,734 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2021-06-04 04:41:45,854 - stpipe.Detector1Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrca5_rateints.fits 2021-06-04 04:41:45,854 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1 2021-06-04 04:41:45,967 - stpipe.Detector1Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrca5_rate.fits 2021-06-04 04:41:45,967 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done 2021-06-04 04:41:46,046 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-06-04 04:41:46,046 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-06-04 04:41:46,048 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-06-04 04:41:46,048 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-06-04 04:41:46,049 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-06-04 04:41:46,050 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-06-04 04:41:46,050 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-06-04 04:41:46,050 - stpipe - INFO - OS: Linux 2021-06-04 04:41:46,152 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits',). 2021-06-04 04:41:46,156 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-06-04 04:41:46,184 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-06-04 04:41:46,196 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-06-04 04:41:46,198 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-06-04 04:41:46,198 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-06-04 04:41:46,198 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-06-04 04:41:46,198 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-06-04 04:41:46,198 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-06-04 04:41:46,199 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-06-04 04:41:46,201 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-06-04 04:41:46,201 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-06-04 04:41:46,202 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-06-04 04:41:46,203 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-06-04 04:41:46,203 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-06-04 04:41:46,203 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-06-04 04:41:46,203 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-06-04 04:41:46,203 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-06-04 04:41:46,203 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-06-04 04:41:46,203 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-06-04 04:41:46,204 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. 2021-06-04 04:41:46,205 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-06-04 04:41:46,205 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-06-04 04:41:46,205 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-06-04 04:41:46,205 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-06-04 04:41:46,205 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-06-04 04:41:46,205 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-06-04 04:41:46,205 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 2021-06-04 04:41:46,206 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits ... 2021-06-04 04:41:46,419 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_rate.fits>,). 2021-06-04 04:41:46,420 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-06-04 04:41:46,761 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 2021-06-04 04:41:46,761 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 2021-06-04 04:41:46,761 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-06-04 04:41:46,960 - stpipe.Image2Pipeline.assign_wcs - INFO - Saved model in jw42424001001_01101_00001_nrca5_assign_wcs.fits 2021-06-04 04:41:46,961 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-06-04 04:41:47,062 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_assign_wcs.fits>,). 2021-06-04 04:41:47,063 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-06-04 04:41:48,850 - stpipe.Image2Pipeline.flat_field - INFO - Saved model in jw42424001001_01101_00001_nrca5_flat_field.fits 2021-06-04 04:41:48,851 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-06-04 04:41:48,958 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). 2021-06-04 04:41:48,959 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-06-04 04:41:48,983 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits 2021-06-04 04:41:48,983 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-06-04 04:41:49,069 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-06-04 04:41:49,069 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-06-04 04:41:49,069 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-06-04 04:41:49,070 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-06-04 04:41:49,070 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-06-04 04:41:49,696 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-06-04 04:41:49,699 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.531918 2021-06-04 04:41:49,736 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-06-04 04:41:49,847 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). 2021-06-04 04:41:49,848 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-06-04 04:41:49,871 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-06-04 04:41:54,365 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-06-04 04:41:56,659 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.042067883 11.980672339 22.042026029 12.016803324 22.004960458 12.016759805 22.005007279 11.980628826 2021-06-04 04:41:56,764 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00001_nrca5_i2d.fits 2021-06-04 04:41:56,764 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-06-04 04:41:56,764 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 2021-06-04 04:41:56,765 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-06-04 04:41:56,943 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrca5_cal.fits 2021-06-04 04:41:56,944 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.ramp.RampModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.ramp.RampModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe.Detector1Pipeline:step.py:321 Detector1Pipeline instance created. INFO stpipe.Detector1Pipeline.group_scale:step.py:321 GroupScaleStep instance created. INFO stpipe.Detector1Pipeline.dq_init:step.py:321 DQInitStep instance created. INFO stpipe.Detector1Pipeline.saturation:step.py:321 SaturationStep instance created. INFO stpipe.Detector1Pipeline.ipc:step.py:321 IPCStep instance created. INFO stpipe.Detector1Pipeline.superbias:step.py:321 SuperBiasStep instance created. INFO stpipe.Detector1Pipeline.refpix:step.py:321 RefPixStep instance created. INFO stpipe.Detector1Pipeline.rscd:step.py:321 RscdStep instance created. INFO stpipe.Detector1Pipeline.firstframe:step.py:321 FirstFrameStep instance created. INFO stpipe.Detector1Pipeline.lastframe:step.py:321 LastFrameStep instance created. INFO stpipe.Detector1Pipeline.linearity:step.py:321 LinearityStep instance created. INFO stpipe.Detector1Pipeline.dark_current:step.py:321 DarkCurrentStep instance created. INFO stpipe.Detector1Pipeline.reset:step.py:321 ResetStep instance created. INFO stpipe.Detector1Pipeline.persistence:step.py:321 PersistenceStep instance created. INFO stpipe.Detector1Pipeline.jump:step.py:321 JumpStep instance created. INFO stpipe.Detector1Pipeline.ramp_fit:step.py:321 RampFitStep instance created. INFO stpipe.Detector1Pipeline.gain_scale:step.py:321 GainScaleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Detector1Pipeline:step.py:367 Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits',). INFO stpipe.Detector1Pipeline:step.py:371 Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}}} DEBUG stpipe.Detector1Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.ramp.RampModel'> DEBUG stpipe.Detector1Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.ramp.RampModel'> DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0038.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0016.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for REFPIX reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RESET reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RSCD reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0004.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0002.fits'. INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure INFO stpipe.Detector1Pipeline.group_scale:step.py:367 Step group_scale running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). INFO stpipe.Detector1Pipeline.group_scale:step.py:371 Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:41 NFRAMES=1 is a power of 2; correction not needed INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:42 Step will be skipped INFO stpipe.Detector1Pipeline.group_scale:step.py:470 Step group_scale done INFO stpipe.Detector1Pipeline.dq_init:step.py:367 Step dq_init running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). INFO stpipe.Detector1Pipeline.dq_init:step.py:371 Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dq_init:dq_init_step.py:63 Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0038.fits DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". WARNING stpipe.Detector1Pipeline.dq_init:dynamicdq.py:29 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dq_init:dynamicdq.py:29 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dq_init:dynamicdq.py:29 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dq_init:dynamicdq.py:29 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Detector1Pipeline.dq_init:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_dq_init.fits INFO stpipe.Detector1Pipeline.dq_init:step.py:470 Step dq_init done INFO stpipe.Detector1Pipeline.saturation:step.py:367 Step saturation running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dq_init.fits>,). INFO stpipe.Detector1Pipeline.saturation:step.py:371 Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.saturation:saturation_step.py:25 Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 35212 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 35212 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_saturation.fits INFO stpipe.Detector1Pipeline.saturation:step.py:470 Step saturation done INFO stpipe.Detector1Pipeline.ipc:step.py:367 Step ipc running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). INFO stpipe.Detector1Pipeline.ipc:step.py:371 Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} INFO stpipe.Detector1Pipeline.ipc:step.py:401 Step skipped. INFO stpipe.Detector1Pipeline.ipc:step.py:470 Step ipc done INFO stpipe.Detector1Pipeline.superbias:step.py:367 Step superbias running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). INFO stpipe.Detector1Pipeline.superbias:step.py:371 Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:superbias_step.py:27 Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:29 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:29 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_superbias.fits INFO stpipe.Detector1Pipeline.superbias:step.py:470 Step superbias done INFO stpipe.Detector1Pipeline.refpix:step.py:367 Step refpix running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_superbias.fits>,). INFO stpipe.Detector1Pipeline.refpix:step.py:371 Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:56 use_side_ref_pixels = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:58 odd_even_columns = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:60 side_smoothing_length = 11 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:62 side_gain = 1.000000 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:63 odd_even_rows = True DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.refpix:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_refpix.fits INFO stpipe.Detector1Pipeline.refpix:step.py:470 Step refpix done INFO stpipe.Detector1Pipeline.linearity:step.py:367 Step linearity running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_refpix.fits>,). INFO stpipe.Detector1Pipeline.linearity:step.py:371 Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.linearity:linearity_step.py:24 Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:214 Pixels were flagged in the DQ of the reference file as NO_LIN_CORR ('Linearity correction not available'); for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:214 Pixels were flagged in the DQ of the reference file as NO_LIN_CORR ('Linearity correction not available'); for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. INFO stpipe.Detector1Pipeline.linearity:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_linearity.fits INFO stpipe.Detector1Pipeline.linearity:step.py:470 Step linearity done INFO stpipe.Detector1Pipeline.persistence:step.py:367 Step persistence running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). INFO stpipe.Detector1Pipeline.persistence:step.py:371 Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:29 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:29 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:229 The input is not a subarray. DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:229 The input is not a subarray. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.persistence:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_trapsfilled.fits INFO stpipe.Detector1Pipeline.persistence:step.py:470 Step persistence done INFO stpipe.Detector1Pipeline.dark_current:step.py:367 Step dark_current running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). INFO stpipe.Detector1Pipeline.dark_current:step.py:371 Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None} DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:dark_current_step.py:28 Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:29 Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:29 Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:29 Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:29 Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=7, nframes=1, groupgap=1 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=7, nframes=1, groupgap=1 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=108, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=108, nframes=1, groupgap=0 DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 0 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 0 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 2 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 2 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 4 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 4 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 6 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 6 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 8 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 8 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 10 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 10 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 12 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 12 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=7, size=2048,2048 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=7, size=2048,2048 DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_dark_current.fits INFO stpipe.Detector1Pipeline.dark_current:step.py:470 Step dark_current done INFO stpipe.Detector1Pipeline.jump:step.py:367 Step jump running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dark_current.fits>,). INFO stpipe.Detector1Pipeline.jump:step.py:371 Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0} DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:47 CR rejection threshold = 50 sigma DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:53 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:59 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.jump:jump.py:38 Found 32 possible cores to use for jump detection INFO stpipe.Detector1Pipeline.jump:jump.py:38 Found 32 possible cores to use for jump detection DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Detector1Pipeline.jump:jump.py:88 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:jump.py:88 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:59 Working on integration 1: INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:59 Working on integration 1: INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:129 From highest outlier Two-point found 4713 pixels with at least one CR INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:129 From highest outlier Two-point found 4713 pixels with at least one CR INFO stpipe.Detector1Pipeline.jump:jump.py:151 Total elapsed time = 2.26897 sec INFO stpipe.Detector1Pipeline.jump:jump.py:151 Total elapsed time = 2.26897 sec INFO stpipe.Detector1Pipeline.jump:jump_step.py:72 The execution time in seconds: 3.445768 INFO stpipe.Detector1Pipeline.jump:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_jump.fits INFO stpipe.Detector1Pipeline.jump:step.py:470 Step jump done INFO stpipe.Detector1Pipeline.ramp_fit:step.py:367 Step ramp_fit running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). INFO stpipe.Detector1Pipeline.ramp_fit:step.py:371 Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:207 Max segments=5 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:207 Max segments=5 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:533 Missing keyword DRPFRMS1, so setting to default value of 0 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:533 Missing keyword DRPFRMS1, so setting to default value of 0 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:3188 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:3188 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:3189 due to excessive CRs or saturation 35122: DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:3189 due to excessive CRs or saturation 35122: DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:3190 Count rates - min, mean, max, std: -169.330429, 0.390264, 1648.302368, 3.283592 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:3190 Count rates - min, mean, max, std: -169.330429, 0.390264, 1648.302368, 3.283592 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1080 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1080 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1081 Number of pixels in 2D array: 4194304 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1081 Number of pixels in 2D array: 4194304 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1082 Shape of 2D image: (2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1082 Shape of 2D image: (2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1083 Shape of data cube: (7, 2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1083 Shape of data cube: (7, 2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1084 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1084 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1085 Number of rows per buffer: 2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1085 Number of rows per buffer: 2048 INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1086 Number of groups per integration: 7 INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1086 Number of groups per integration: 7 INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1087 Number of integrations: 1 INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1087 Number of integrations: 1 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1088 The execution time in seconds: 25.926541 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1088 The execution time in seconds: 25.926541 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:step.py:470 Step ramp_fit done INFO stpipe.Detector1Pipeline.gain_scale:step.py:367 Step gain_scale running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:371 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:470 Step gain_scale done INFO stpipe.Detector1Pipeline.gain_scale:step.py:367 Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:371 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:470 Step gain_scale done INFO stpipe.Detector1Pipeline:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_rateints.fits INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_rate.fits INFO stpipe.Detector1Pipeline:step.py:470 Step Detector1Pipeline done DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image2Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe.Image2Pipeline:fits_support.py:462 Skipping FITS updating completely. INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:util.py:937 Update S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_assign_wcs.fits INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_assign_wcs.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_flat_field.fits INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:939 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:961 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:520 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:photom.py:713 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:68 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:674 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:186 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:186 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:186 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:186 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:186 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:186 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:186 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:76 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:76 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:439 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:406 Model size 16.4M available system memory 119.8G DEBUG stpipe.Image2Pipeline.resample:util.py:406 Model size 16.4M available system memory 119.8G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:377 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:378 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:379 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:388 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 22.042067883 11.980672339 22.042026029 12.016803324 22.004960458 12.016759805 22.005007279 11.980628826 INFO stpipe.Image2Pipeline.resample:util.py:937 Update S_REGION to POLYGON ICRS 22.042067883 11.980672339 22.042026029 12.016803324 22.004960458 12.016759805 22.005007279 11.980628826 INFO stpipe.Image2Pipeline.resample:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[saturation] | 3.74 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[superbias] | 5.02 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[refpix] | 6.61 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[linearity] | 5.38 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[trapsfilled] | 1.23 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dark_current] | 3.48 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage2_wcs | 7.57 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:688 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:462 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". | |||